-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathsetup.py
34 lines (30 loc) · 1 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
from setuptools import setup, find_packages
def readme():
with open("README.md") as f:
return f.read()
def read_version(filename='VERSION'):
with open(filename, 'r') as f:
return f.readline()
setup(
name="merf",
version=read_version(),
description="Mixed Effects Random Forest",
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="random forest machine learning mixed effects",
url="https://github.com/manifoldai/merf",
author="Manifold, Inc.",
author_email="[email protected]",
license="MIT",
python_requires='>=3.6',
packages=find_packages(),
install_requires=["pandas>=1.0", "numpy", "scikit-learn", "matplotlib>=3.0"],
include_package_data=True,
zip_safe=False,
)