-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1004 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (30 loc) · 1004 Bytes
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
from setuptools import setup, find_packages
import sys
if sys.version_info[0] == 2:
sys.exit('Sorry, Python 2.x is not supported')
setup(
name='hyperprob',
version='0.1.0',
description='Model checker for Probabilistic Hyperproperties',
url='https://github.com/TART-MSU/HyperProb',
author='Oyendrila Dobe',
author_email='oyendrila.dobe@gmail.com',
packages=find_packages(),
install_requires=[
#'stormpy>=1.7.0',
'termcolor~=2.0.1',
'lark-parser~=0.12.0',
'z3-solver~=4.11.2.0'
],
python_requires='>=3.8.2',
classifiers=[
'Environment :: MacOS X',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)