-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (25 loc) · 795 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
# type: ignore
import setuptools
data_files = []
setuptools.setup(
name="widip",
version="0.0.2",
author="Martin Coll",
author_email="[email protected]",
description="Widip is an interactive environment for computing with wiring diagrams in modern systems",
url="https://github.com/colltoaction/widip",
project_urls={
"Bug Tracker": "https://github.com/colltoaction/widip/issues",
},
license="CC0-1.0",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
packages=["widip"],
package_data={},
data_files=data_files,
install_requires=["discopy>=1.1.7", "pyyaml>=6.0.1", "watchdog>=4.0.1"],
python_requires=">=3.11",
entry_points={'console_scripts': 'widip=:'},
)