-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (52 loc) · 1.36 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = [
# 'prettytable'
'rich',
'pyreadr',
'prettytable',
'pandas',
'numpy',
'pytabix'
]
tests_require = [
# 'nose',
# 'mock'
]
extras_require = {
'docs': []
}
setup(name='ukbsearch',
version='0.2.2',
url='https://github.com/danielmsk/ukbsearch',
license='MIT',
author='Daniel Minseok Kwon',
author_email='daniel.minseok.kwon@gmail.com',
description='',
download_url='',
keywords=['genomics', 'bioinformatics'],
classifiers=[
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
# packages=find_packages(exclude=['tests']),
packages=find_packages('src'),
package_dir={'': 'src'},
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
zip_safe=False,
install_requires=install_requires,
setup_requires=['nose>=1.0'],
test_suite='nose.collector',
# package_data={
# 'ukbsearch': ['docs/*'],
# },
entry_points={
'console_scripts': [
'ukbsearch=ukbsearch:cli',
]
})