Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
OBITools3
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
14
Issues
14
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
OBITools
OBITools3
Commits
50c60404
Commit
50c60404
authored
May 26, 2015
by
Eric Coissac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
description of the obitools3 package for the python installer
parent
6248160e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
67 additions
and
2 deletions
+67
-2
MANIFEST.in
MANIFEST.in
+3
-2
requirements.txt
requirements.txt
+1
-0
setup.py
setup.py
+63
-0
No files found.
MANIFEST.in
View file @
50c60404
include setup.py
recursive-include distutils.ext *.py *.c *.pem
recursive-include src *.pyx *.pxd *.c *.h *.cfiles
recursive-include python *.pyx *.pxd *.c *.h *.cfiles
recursive-include src *.c *.h
recursive-include doc/sphinx/source *.txt *.rst *.py
recursive-include doc/sphinx/sphinxext *.py
include doc/sphinx/make.bat
include doc/sphinx/Makefile
include doc/sphinx/Doxyfile
include README.txt
include requirements.txt
requirements.txt
View file @
50c60404
...
...
@@ -2,3 +2,4 @@
Cython
>=0.21
Sphinx
>=1.2.0
ipython
>=3.0.0
breathe
>=4.0.0
setup.py
View file @
50c60404
#!/usr/bin/env python
import
sys
PACKAGE
=
"OBITools3"
VERSION
=
"0.0.0"
AUTHOR
=
'Eric Coissac'
EMAIL
=
'eric@coissac.eu'
URL
=
'metabarcoding.org/obitools3'
LICENSE
=
'CeCILL-V2'
DESCRIPTION
=
"Scripts and library for DNA metabarcoding"
,
SRC
=
'python'
CSRC
=
'src'
classifiers
=
[
'Development Status :: 1 - Planning'
,
'Environment :: Console'
,
'Intended Audience :: Science/Research'
,
'License :: Other/Proprietary License'
,
'Operating System :: Unix'
,
'Programming Language :: Python'
,
'Programming Language :: Python :: 3'
,
'Topic :: Scientific/Engineering :: Bio-Informatics'
,
'Topic :: Utilities'
,
]
PYTHONMIN
=
'3.4'
sys
.
path
.
append
(
'distutils.ext'
)
sys
.
path
.
append
(
SRC
)
if
__name__
==
"__main__"
:
try
:
from
obitools3
import
version
VERSION
=
version
.
version
except
ImportError
:
pass
from
obidistutils.serenity
import
serenity_mode
serenity
=
serenity_mode
(
PACKAGE
,
VERSION
)
from
obidistutils.core
import
setup
from
obidistutils.core
import
CTOOLS
from
obidistutils.core
import
CEXES
from
obidistutils.core
import
FILES
setup
(
name
=
PACKAGE
,
description
=
DESCRIPTION
,
classifiers
=
classifiers
,
version
=
VERSION
,
author
=
AUTHOR
,
author_email
=
EMAIL
,
license
=
LICENSE
,
url
=
URL
,
python_src
=
SRC
,
sse
=
'sse2'
,
serenity
=
serenity
,
pythonmin
=
PYTHONMIN
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment