-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
64 lines (62 loc) · 1.82 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from setuptools import find_packages, setup
with open("README.rst", "r") as f:
long_description = f.read()
setup(
name="probflow",
version="2.4.1",
author="Brendan Hasz",
author_email="winsto99@gmail.com",
description="A Python package for building Bayesian models with TensorFlow or PyTorch",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/brendanhasz/probflow",
license="MIT",
packages=find_packages(where="src"),
package_dir={"": "src"},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
],
zip_safe=False,
install_requires=[
"matplotlib >= 3.1.0",
"numpy >= 1.17.0",
"pandas >= 0.25.0",
"cloudpickle >= 1.3",
],
extras_require={
"tensorflow": [
"tensorflow >= 2.2.0",
"tensorflow-probability >= 0.10.0",
],
"tensorflow_gpu": [
"tensorflow-gpu >= 2.2.0",
"tensorflow-probability >= 0.10.0",
],
"pytorch": [
"torch >= 1.5.0",
],
"dev": [
"autoflake >= 1.4",
"black >= 19.10b0",
"bumpversion",
"flake8 >= 3.8.3",
"isort >= 5.1.2",
"pytest >= 6.0.0rc1",
"pytest-cov >= 2.7.1",
"sphinx >= 3.1.2",
"sphinx-tabs >= 1.1.13",
"sphinx_rtd_theme >= 0.5.0",
"setuptools >= 49.1.0",
"twine >= 3.2.0",
"wheel >= 0.34.2",
],
"docs": [
"tensorflow >= 2.2.0",
"tensorflow-probability >= 0.10.0",
"sphinx-tabs >= 1.1.13",
],
},
)