-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
executable file
·40 lines (37 loc) · 1.42 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
import sys
from setuptools import setup, find_packages
PY2 = sys.version_info[0] == 2
PY3 = sys.version_info[0] == 3
setup(
name='seqseek',
version='0.4.2',
url='https://github.com/23andMe/seqseek',
download_url='https://github.com/23andMe/seqseek/tarball/0.4.1',
author='23andMe Engineering',
author_email='[email protected]',
description='Easy access to human genome reference sequences',
entry_points={'console_scripts': [
'download_build_37 = seqseek.downloader:cmd_line',
'download_build_38 = seqseek.downloader:cmd_line',
'seqseek_37 = seqseek.cli:cmd_line',
'seqseek_38 = seqseek.cli:cmd_line',
'test_build_37 = seqseek.tests.build_specific_tests:test_build_37',
'test_build_38 = seqseek.tests.build_specific_tests:test_build_38'
]},
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=['requests'],
classifiers=[
# 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)