-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
52 lines (49 loc) · 1.65 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
from setuptools import setup, find_packages
exec(open("trio_inspector/_version.py", encoding="utf-8").read())
LONG_DESC = open("README.md", encoding="utf-8").read()
setup(
name="trio-inspector",
version=__version__,
description="A browser-based monitor for Trio",
url="https://github.com/syncrypt/trio-inspector/",
long_description=open("README.md").read(),
author="Hannes Gräuler",
author_email="[email protected]",
license="MIT -or- Apache License 2.0",
packages=find_packages(),
package_data={
'trio_inspector': [
'static/main.js',
'static/index.html',
'static/style.css'
]
},
install_requires=[
"trio",
"trio-typing",
"hypercorn",
"quart-trio",
"quart",
"quart-cors"
],
keywords=[
# COOKIECUTTER-TRIO-TODO: add some keywords
# "async", "io", "networking", ...
],
python_requires=">=3.7",
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Trio",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Software Development :: Debuggers",
],
)