-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 699 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 699 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
from setuptools import setup, find_packages
setup(
name="SimWeb", # Replace with your application name
version="0.1.0",
packages=find_packages(include=["simweb"]),
install_requires=[
"flask",
"netifaces",
"pyzmq",
],
entry_points={
'console_scripts': [
'simweb=simweb.app:main', # Replace with your actual module path
],
},
# Metadata
author="Julius Haag",
author_email="haag.julius@outlook.de",
description="Simulation Web Interface for the SimPublisher tool",
keywords="Simulation SimPublisher WebInterface",
url="https://github.com/juliushaag/SimWeb",
python_requires=">=3.6",
)