forked from 23andMe/bonsaitree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 920 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
from setuptools import setup, find_packages, Extension
NAME = "bonsaitree"
DESCRIPTION = "Python package for building pedigrees."
README = open("README.md", 'r').read()
LICENSE = open("LICENSE.txt", 'r').read()
setup(
name=NAME,
use_scm_version=True,
author="23andMe Engineering",
author_email="[email protected]",
description=DESCRIPTION,
license=LICENSE,
long_description=README,
long_description_content_type="text/markdown",
packages=[NAME],
package_dir={NAME : NAME},
package_data={NAME: ["models/*.json"]},
include_package_data=True,
url="https://github.com/23andme/" + NAME,
zip_safe=True,
install_requires=["Cython", "funcy", "numpy", "scipy", "six", "setuptools-scm", "wheel"],
setup_requires=["Cython", "setuptools-scm", "wheel"],
#ext_modules=[
# Extension("bonsaitree.copytools", sources=["bonsaitree/copytools.pyx"])
#],
)