-
Notifications
You must be signed in to change notification settings - Fork 56
/
setup.py
executable file
·96 lines (91 loc) · 3.29 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/usr/bin/env python
from glob import glob
from setuptools import find_packages, setup
def read_file(filename):
try:
return open(filename).read()
except OSError:
return ''
setup(
name='circuits',
description='Asynchronous Component based Event Application Framework',
long_description=open('README.rst')
.read()
.replace(
'.. include:: examples/index.rst',
read_file('examples/index.rst'),
),
author='James Mills',
author_email='[email protected]',
url='http://circuitsframework.com/',
download_url='http://bitbucket.org/circuits/circuits/downloads/',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: No Input/Output (Daemon)',
'Environment :: Other Environment',
'Environment :: Plugins',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: BSD',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Adaptive Technologies',
'Topic :: Communications :: Chat :: Internet Relay Chat',
'Topic :: Communications :: Email :: Mail Transport Agents',
'Topic :: Database',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Clustering',
'Topic :: System :: Distributed Computing',
],
license='MIT',
keywords='event framework distributed concurrent component asynchronous',
platforms='POSIX',
packages=find_packages(
exclude=[
'*.tests',
'*.tests.*',
'tests.*',
'tests',
'*.fabfile',
'*.fabfile.*',
'fabfile.*',
'fabfile',
],
),
scripts=glob('bin/*'),
entry_points={
'console_scripts': [
'circuits.web=circuits.web.main:main',
],
},
zip_safe=True,
use_scm_version={
'write_to': 'circuits/version.py',
},
setup_requires=[
'setuptools_scm',
],
extras_require={'stomp': ['stompest>=2.3.0', 'pysocks>=1.6.7']},
python_requires='>=3.7',
)