-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (38 loc) · 1.14 KB
/
setup.py
File metadata and controls
45 lines (38 loc) · 1.14 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
import os
from os import path
from setuptools import find_packages, setup
NAME = "pfvwmi"
DESCRIPTION = "Benchmarking WMI-based probabilistic formal verification"
URL = "http://github.com/paolomorettin/pfvwmi"
EMAIL = "paolo.morettin@unitn.it"
AUTHOR = "Paolo Morettin"
VERSION = "0.9"
# What packages are required for this module to be executed?
REQUIRED = [
"gymnasium",
"matplotlib",
"numpy",
"pysmt @ git+https://git@github.com/pysmt/pysmt@optimization#egg=pysmt",
"torch",
"wmipa @ git+https://git@github.com/unitn-sml/wmi-pa@interface-refactoring#egg=wmi-pa",
]
here = os.path.abspath(os.path.dirname(__file__))
with open(path.join(here, "README.md")) as ref:
long_description = ref.read()
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
url=URL,
author=AUTHOR,
author_email=EMAIL,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
packages=find_packages(exclude=("experiments")),
zip_safe=False,
install_requires=REQUIRED,
)