-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (28 loc) · 884 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
29
30
31
from setuptools import Extension, find_packages, setup
setup(
name="AlphaAssign",
version="1.1.0",
author="Andrew Whalen",
author_email="[email protected]",
description="A pedigree assignement algorithm.",
long_description="AlphaAssign is a parentage assignement algorithm that was designed to handle SNP and GBS data.",
long_description_content_type="text/markdown",
url="",
license="MIT license",
packages=['tinyassign','tinyassign.Assign','tinyassign.tinyhouse'],
package_dir={'': 'src'},
classifiers=[
"Programming Language :: Python :: 3",
],
entry_points = {
'console_scripts': [
'AlphaAssign=tinyassign.tinyAssign:main',
# 'AlphaMGSAssign=tinyassign.tinyMgsAssign:main',
],
},
install_requires=[
'numpy>=1.19',
'numba>=0.49.0',
'scipy'
]
)