forked from eaton-lab/simcat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.12 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.12 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import re
# parse version from init.py
with open("simcat/__init__.py") as init:
CUR_VERSION = re.search(
r"^__version__ = ['\"]([^'\"]*)['\"]",
init.read(),
re.M,
).group(1)
# run setup script
setup(
name="simcat",
version=CUR_VERSION,
url="https://github.com/pmckenz1/simcat",
author="Patrick McKenzie and Deren Eaton",
author_email="de2356@columbia.edu",
description="simulation and machine learning algorithms for admixture inference",
long_description=open('README.md').read(),
packages=find_packages(),
install_requires=[
"future",
"ipcoal",
"h5py",
"ipyparallel",
"ipywidgets",
"fasteners",
"tensorflow",
],
keywords="invariants coalescent simulation genomics introgression",
entry_points={},
data_files=[],
license='GPLv3',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Framework :: Jupyter'
],
)