forked from greenelab/ccc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (42 loc) · 1.33 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
36
37
38
39
40
41
42
43
44
45
import setuptools
# Commands to publish new package:
#
# rm -rf dist/
# python setup.py sdist
# twine upload dist/*
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="ccc-coef",
version="0.2.2", # remember to change libs/ccc/__init__.py file also
author="Milton Pividori",
author_email="[email protected]",
description="The Clustermatch Correlation Coefficient (CCC) is a highly-efficient, next-generation not-only-linear correlation coefficient that can work on numerical and categorical data types.",
license="BSD-2-Clause Plus Patent",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/greenelab/ccc",
package_dir={"": "libs"},
packages=[
"ccc/coef",
"ccc/numpy",
"ccc/pytorch",
"ccc/scipy",
"ccc/sklearn",
"ccc/utils",
],
python_requires=">=3.9",
install_requires=[
# numpy.typing is only available in numpy>=1.21.0
"numpy>=1.21.0",
"scipy",
"numba",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
],
)