-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (23 loc) · 871 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
import setuptools
options = dict(
name="boisgera-pioupiou",
version="0.0a12",
license="MIT License",
description="A nano probabilistic programming language for Python",
author="Sébastien Boisgérault",
author_email="[email protected]",
url="https://github.com/boisgera/pioupiou",
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Mathematics",
],
python_requires=">=3.8",
)
with open("README.md", "r", encoding="utf-8") as README:
options["long_description"] = README.read()
options["long_description_content_type"] = "text/markdown"
options["packages"] = setuptools.find_packages()
options["install_requires"] = (["numpy"],)
setuptools.setup(**options)