-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
54 lines (51 loc) · 1.58 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
54
import pathlib
from setuptools import setup
pkg_name = 'pura'
base_dir = pathlib.Path(__file__).parent
with open(base_dir / 'src' / pkg_name / '_version.py') as f:
version_globals = {}
exec(f.read(), version_globals)
version = version_globals['__version__']
setup(
name=pkg_name,
description='The little async embedded visualization framework that could',
long_description='''
Pura is a framework enabling remote, always-available graphical and command
line views for developers to understand, inspect, and modify their
async app while it's running.
''',
long_description_content_type='text/markdown',
version=version,
author='GROOVE X, Inc.',
author_email='gx-sw@groove-x.com',
url='https://github.com/groove-x/pura',
license='MIT',
packages=[pkg_name],
package_dir={'': 'src'},
install_requires=[
'anyio ~= 3.0.0',
'attrs >= 19.2.0', # for "eq"
'hypercorn',
'quart >= 0.14.0',
'sniffio',
],
extras_require={
'trio': [
'anyio[trio] ~= 3.0.0',
'hypercorn[trio]',
'quart_trio >= 0.7.0',
],
},
python_requires='>=3.7',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Framework :: AsyncIO',
'Framework :: Trio',
],
)