-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (26 loc) · 1.1 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
import setuptools
VER = '0.3.3'
AUTHOR = 'Dylan Skola'
print('*' * 80)
print('* {:<76} *'.format('python-genome-browser version {} by {}'.format(VER, AUTHOR)))
print('*' * 80)
print()
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(name='pygbrowse',
version=VER,
description='Tools for making plots of genomic datasets in a genome-browser-like format ',
long_description=long_description,
url='https://github.com/phageghost/python-genome-browser',
author='phageghost',
author_email='pygbrowse@phageghost.net',
license='MIT',
packages=['pygbrowse'],
install_requires=['numpy', 'scipy', 'pandas', 'matplotlib', 'seaborn', 'pysam', 'intervaltree'],
zip_safe=False,
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
)