-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
40 lines (37 loc) · 1.01 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
"""
dumdum
-------------
Create fake HTTP servers with simple stanzas.
"""
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='dumdum',
version='0.1.9',
url='http://www.github.com/jar-o/dumdum/',
license='MIT',
author='James Robson',
author_email='[email protected]',
description='Easily create dummy HTTP servers',
long_description=readme(),
py_modules=['dumdum'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'pyparsing'
],
scripts=['bin/dumdum'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
test_suite='test_dumdum'
)