-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (44 loc) · 1.2 KB
/
setup.py
File metadata and controls
49 lines (44 loc) · 1.2 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
46
47
48
49
"""setuptools setup"""
from setuptools import find_packages, setup
VERSION = "0.2.29"
try:
with open("readme.md") as f:
long_description = f.read()
except FileNotFoundError:
long_description = ""
setup(
name="casymda",
url="https://github.com/fladdimir/casymda",
author="FFC",
author_email="fladdi.mir@gmx.de",
packages=find_packages("src"),
package_dir={"": "src"},
package_data={
"casymda.visualization.state_icons": ["*.png"],
"casymda.visualization.web_server": ["*.html", "*.js"],
},
version=VERSION,
install_requires=[
"simpy",
"xmltodict",
"Pillow",
"flask",
"flask-cors",
"black==19.3b0",
"numpy",
"networkx",
"flatbuffers==1.12",
],
zip_safe=False,
license="MIT",
description="Simple DES modeling and simulation"
+ " based on SimPy, BPMN, and pixi.js",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
long_description=long_description,
long_description_content_type="text/markdown",
)