-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (35 loc) · 1.04 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
#!/usr/bin/env python
"""setup.py: Controls the setup process using setuptools."""
import re
from setuptools import setup
version = re.search(
r'^__version__\s*=\s*"(.*)"',
open('uppyyl_state_constructor/version.py').read(),
re.M
).group(1)
with open("README.md", "rb") as f:
long_description = f.read().decode("utf-8")
setup(
name="uppyyl_state_constructor",
packages=["uppyyl_state_constructor"],
entry_points={
"console_scripts": [
'uppyyl_state_constructor = uppyyl_state_constructor.__main__:main',
'uppyyl-state-constructor = uppyyl_state_constructor.__main__:main',
]
},
version=version,
description="State Constructor for Uppyyl including a CLI tool.",
long_description=long_description,
author="Sascha Lehmann",
author_email="[email protected]",
url="",
install_requires=[
'uppyyl_simulator',
'numpy==1.22.4',
'pytest==7.1.2',
'pytest-subtests==0.8.0',
'colorama==0.4.4',
'matplotlib~=3.3.0'
],
)