-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (34 loc) · 1.25 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
from setuptools import setup, find_packages
setup(
name="skallel-stats",
description="Statistical functions for genome variation data.",
packages=find_packages("src"),
package_dir={"": "src"},
setup_requires=["setuptools>18.0", "setuptools-scm>1.5.4"],
install_requires=[
"numpy", "scipy", "numba", "dask[complete]>=2.0.0", "multipledispatch"
],
use_scm_version={
"version_scheme": "guess-next-dev",
"local_scheme": "dirty-tag",
"write_to": "src/skallel_stats/version.py",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
maintainer="Alistair Miles",
maintainer_email="alimanfoo@googlemail.com",
url="https://github.com/scikit-allel/skallel-stats",
license="MIT",
include_package_data=True,
zip_safe=False,
)