-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (52 loc) · 1.46 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
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="web_service_template",
version="0.0.1",
author="Azmi SAHIN",
author_email="[email protected]",
description="It is a template to be used in automation systems of web projects",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
url="https://github.com/azmisahin/azmisahin-software-web-service-template-flask-python-v1",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.11.1",
entry_points={
"console_scripts": [
"tracker = package.app:main",
"web-service-template = web.app:app.run",
],
},
install_requires=[
"gunicorn",
"flask",
"flask-restx",
"gevent",
"flask-socketio",
"flask-cors",
"pyOpenSSL",
"gevent-websocket",
"websocket-client",
"python-dotenv",
],
extras_require={
"development": [
"gunicorn"
# Add development tools here
],
"test": [
"gunicorn"
# Add test tools here
],
"production": [
# Add production tools here
],
},
)