-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (23 loc) · 962 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
from setuptools import setup, find_packages
with open("README.md") as readme_file:
README = readme_file.read()
setup_args = dict(
name="autostat",
version="0.0.2",
description="An implementation of the a Gaussian process kernel selection algorithm inspired by the Automatic Statistician",
long_description_content_type="text/markdown",
long_description=README,
license="MIT",
packages=find_packages(),
author="Brendan Colloran, Sutoiku Inc.",
author_email="brendan@stoic.com",
keywords=["Automatic Statistician", "Gaussian Process"],
url="https://github.com/sutoiku/autostat",
download_url="https://pypi.org/project/autostat/",
)
install_requires = ["scikit-learn", "matplotlib", "numpy", "torch"]
extras_require = {"dev": ["pytest", "black", "pytest-cov", "html-reports"]}
if __name__ == "__main__":
setup(
**setup_args, install_requires=install_requires, extras_require=extras_require
)