forked from AlphaGenes/AlphaFamImpute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 844 Bytes
/
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
from setuptools import Extension, find_packages, setup
setup(
name="AlphaFamImpute",
version="1.0.2",
author="Andrew Whalen",
author_email="[email protected]",
description="An imputation program for phasing and imputation in a full sib family.",
long_description="An imputation program for phasing and imputation in a full sib family.",
long_description_content_type="text/markdown",
url="",
packages=['alphafamimpute', 'alphafamimpute.FamilyImputation', 'alphafamimpute.tinyhouse'],
package_dir={'': 'src'},
license="MIT license",
classifiers=[
"Programming Language :: Python :: 3",
],
entry_points = {
'console_scripts': [
'AlphaFamImpute=alphafamimpute.AlphaFamImpute:main'
],
},
install_requires=[
'numpy',
'numba'
]
)