-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (40 loc) · 1.45 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
46
47
"""Setup file for the asboostreg package."""
import setuptools
from model_helpers import __author__
from model_helpers import __email__
from model_helpers import __license__
from model_helpers import __maintainer__
from model_helpers import __version__
# from Cython.Build import cythonize
# import numpy as np
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as f:
install_requires = [line.strip() for line in f]
print("Installing the asboostreg package.")
print("Please check that the following dependencies are installed:")
print(*install_requires, sep="\n")
setuptools.setup(
name="asboostreg",
version=__version__,
author=__author__,
author_email=__email__,
description="Additive Sparse Boosting Regression algorithm.",
long_description=long_description,
url="https://github.com/thesis-jdgs/additive-sparse-boost-regression",
packages=setuptools.find_packages(),
install_requires=install_requires,
license=__license__,
maintainer=__maintainer__,
classifiers=[
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
],
py_modules=["asboostreg"],
include_package_data=True,
package_data={"potts": ["*.dll"]},
# ext_modules=cythonize("model_helpers/split_reducers.pyx"),
# include_dirs=[np.get_include()]
)