-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·34 lines (30 loc) · 1.21 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
__version__ = "2.0"
#REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines()]
setup(
name='sndg-bio',
packages=find_packages(),
version=__version__,
#scripts=["scripts/structurome.py", "scripts/vcf2aln.py", "scripts/render_tree.py"],
description="My bioinformatic scripts",
author='Ezequiel Sosa - SNDG',
install_requires=["tqdm", "bcbio-gff", "biopython", "goatools", "dna_features_viewer"],
author_email='[email protected]',
url='https://github.com/ezequieljsosa/sndg-bio',
download_url='https://github.com/ezequieljsosa/sndg-bio/archive/0.1.tar.gz',
keywords=['bioinformatics', 'sequence', 'example'],
classifiers=['Programming Language :: Python', 'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Science/Research', ],
extras_require={
'mongo': ['pymongo', 'mongoengine'],
'network': ['python-libsbml', "networkx"],
'phylo': ['ete3'],
'def': ["twine"]
},
)
# rm -r dist/;python setup.py sdist bdist_wheel;twine upload dist/*
# ~/.pypirc
# [pypi]
# repository:https://upload.pypi.org/legacy/
# username = xxxxx
# password = xxxxx