-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
44 lines (40 loc) · 1.62 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
from setuptools import setup,find_packages
import os
NAME = 'liveandletdie'
HERE = os.path.dirname(__file__)
setup(
name=NAME,
version='0.0.10.dev0',
packages=find_packages(),
install_requires=['requests', 'werkzeug'],
package_data={'': ['*.txt', '*.rst']},
author='Peter Hudec',
author_email='[email protected]',
maintainer='Authomatic Project Community',
maintainer_email='[email protected]',
description='Simplifies launching and terminating of web development '
'servers from BDD and functional tests.',
long_description=open(os.path.join(HERE, 'README.rst')).read(),
keywords='Flask, Pyramid, Django, Google App Engine, GAE, BDD, TDD, '
'functional testing, live server',
url='http://github.com/peterhudec/{0}'.format(NAME),
license = 'MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'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 :: JavaScript',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: '
'CGI Tools/Libraries',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)