-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
35 lines (30 loc) · 1.38 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
from os.path import dirname, join
from setuptools import find_packages, setup
version = open('version.txt').read()
classifiers = [ 'Development Status :: 4 - Beta'
, 'Environment :: Console'
, 'Intended Audience :: Developers'
, 'License :: OSI Approved :: MIT License'
, 'Natural Language :: English'
, 'Operating System :: OS Independent'
, 'Programming Language :: Python :: 3.6'
, 'Programming Language :: Python :: 3.7'
, 'Programming Language :: Python :: 3.8'
, 'Programming Language :: Python :: 3.9'
, 'Programming Language :: Python :: Implementation :: CPython'
, 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application'
]
setup( author = 'Chad Whitacre et al.'
, author_email = '[email protected]'
, classifiers = classifiers
, description = 'A filesystem router for Python web frameworks'
, long_description=open(join(dirname(__file__), 'README.rst')).read()
, name = 'aspen'
, packages = find_packages()
, url = 'https://github.com/AspenWeb/aspen.py'
, version = version
, zip_safe = False
, package_data = {'aspen': ['request_processor/mime.types']}
, install_requires = open('requirements.txt').read()
, tests_require = open('requirements_tests.txt').read()
)