-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
34 lines (31 loc) · 1.28 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
from os.path import dirname, join
from setuptools import find_packages, setup
setup(
author='Chad Whitacre et al.',
author_email='team@aspen.io',
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',
],
description='Pando is a Python web framework. Simplates are the main attraction.',
long_description=open(join(dirname(__file__), 'README.rst')).read(),
long_description_content_type='text/x-rst',
name='pando',
packages=find_packages(exclude=['pando.tests', 'pando.tests.*']),
url='http://aspen.io/',
version=open('version.txt').read().strip(),
zip_safe=False,
package_data={'pando': ['www/*']},
install_requires=open('requirements.txt').read(),
tests_require=open('requirements_tests.txt').read(),
)