-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (30 loc) · 1.05 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
#!/usr/bin/env python
from setuptools import find_packages, setup
from pdbio import __version__
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='pdbio',
version=__version__,
author='Daichi Narushima',
author_email='[email protected]',
description='Pandas-based Data Handler for VCF, BED, and SAM Files',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/dceoy/pdbio',
packages=find_packages(),
include_package_data=True,
install_requires=['docopt', 'pandas'],
entry_points={'console_scripts': ['pdbio=pdbio.cli:main']},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Plugins',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
python_requires='>=3.6'
)