-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (33 loc) · 1.22 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
from setuptools import setup
setup(
name='admix',
version='1.2',
description='An admixture analysis tool that supports raw data from 23andme, AncestryDNA, etc.',
long_description=open('admix/README.rst','r').read(),
url='https://github.com/stevenliuyi/admix',
author='Steven Liu',
author_email='me@yliu.io',
license='GNU General Public License v3.0',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Natural Language :: Chinese (Simplified)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
keywords='bio DNA SNP ancestry admixture',
install_requires=['numpy','scipy','pysciter'],
packages=['admix'],
package_data={
'admix':['data/*', 'README.rst']
},
entry_points={
'console_scripts': ['admix=admix.admix:main'],
},
)