parent
6b832d212a
commit
1ccb3c7b08
5 changed files with 18 additions and 14 deletions
@ -0,0 +1 @@ |
||||
__path__ = __import__('pkgutil').extend_path(__path__, __name__) |
@ -0,0 +1 @@ |
||||
__path__ = __import__('pkgutil').extend_path(__path__, __name__) |
@ -1,18 +1,21 @@ |
||||
#!/usr/bin/python |
||||
from setuptools import setup |
||||
|
||||
from distutils.core import setup |
||||
|
||||
setup(name='BinSeqs', |
||||
version='0.1', |
||||
description='Support for binary sequence formats in Biopython', |
||||
author='Damien Goutte-Gattat', |
||||
author_email='dgouttegattat@incenp.org', |
||||
classifiers=['Development Status :: 1 - Planning', |
||||
setup( |
||||
name = 'BinSeqs', |
||||
version = '0.1', |
||||
description = 'Support for binary sequence formats in Biopython', |
||||
author = 'Damien Goutte-Gattat', |
||||
author_email = 'dgouttegattat@incenp.org', |
||||
classifiers = [ |
||||
'Development Status :: 1 - Planning', |
||||
'Environment :: Console', |
||||
'Intended Audience :: Science/Research', |
||||
'License :: OSI Approved :: BSD License', |
||||
'Topic :: Scientific/Engineering :: Bio-Informatics'], |
||||
packages=['incenp', |
||||
'Topic :: Scientific/Engineering :: Bio-Informatics' |
||||
], |
||||
packages = [ |
||||
'incenp', |
||||
'incenp.bio', |
||||
'incenp.bio.seqio'] |
||||
) |
||||
'incenp.bio.seqio' |
||||
] |
||||
) |
||||
|
Loading…
Reference in new issue