-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (40 loc) · 1.3 KB
/
setup.py
File metadata and controls
48 lines (40 loc) · 1.3 KB
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
48
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md")) as f:
readme = f.read()
about = {}
with open(os.path.join(here, "ronia", "__version__.py"), "r") as f:
exec(f.read(), about)
setup(
name=about["__title__"],
version=about["__version__"],
author=about["__author__"],
description=about["__description__"],
url=about["__url__"],
packages=find_packages(exclude=["contrib", "doc", "tests"]),
license=about["__license__"],
install_requires=[
"numpy>=1.10.0",
"scipy>=0.13.0",
"bayespy",
"h5py",
],
extras_require={
"test": ["pytest"],
"doc": ["sphinx", "numpydoc"]
},
keywords="bayesian statistics modeling gaussian process splines",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
# MIT License
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
long_description=readme,
long_description_content_type="text/markdown",
)