-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
40 lines (39 loc) · 1.63 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
#!/usr/bin env python
from distutils.core import setup
setup(
name='crowelab_pyir',
version='1.6.1',
description='',
license='Creative Commons Attribution 4.0',
author='Sam Day, Andre Branchizio, Jordan Willis, Jessica Finn, Taylor Jones, Sam Schmitz, Luke Myers',
scripts=['./bin/pyir'],
install_requires=['tqdm'],
packages=['crowelab_pyir'],
package_dir={'crowelab_pyir': './pyir'},
package_data={'crowelab_pyir': ['data/*',
'data/bin/*',
# 'data/germlines/*',
'data/crowelab_data/*',
'data/crowelab_data/*/*',
'data/crowelab_data/*/*/*',
'data/germlines/aux_data/*',
'data/germlines/internal_data/*',
'data/germlines/internal_data/*/*'
]
},
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Environment :: Console',
'Environment :: MacOS X',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: Other/Proprietary License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)