-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 696 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 696 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
26
from setuptools import setup, find_packages
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="plotop",
version="0.1.0",
packages=find_packages(include=["server", "server.*", "server.templates", "server.templates.*"]),
package_data={
"server": [
"templates/*.html",
"templates/*/*.html"
]
},
install_requires=requirements,
entry_points={
"console_scripts": [
"plotop=server.app:main"
]
},
python_requires=">=3.8",
author="caibingcheng",
author_email="jack_cbc@163.com",
description="Real-time performance plotting application with Flask"
)