-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
49 lines (43 loc) · 1.16 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
#!/usr/bin/env python
"""
pacman
------
pacfile proxy web server written in python. useful for developing and testing
cross-domain applications. one step install, easily configured via yaml.
"""
from setuptools import setup
with open("requirements.txt", "r") as f:
requires = f.readlines()
setup(
name='pacman',
version='0.0.1',
url='http://github.com/gregorynicholas/pacman',
license='MIT',
author='gregorynicholas',
author_email='[email protected]',
description=__doc__,
long_description=__doc__,
py_modules=['pacman'],
include_package_data=True,
data_files=['pacman.yaml'],
zip_safe=False,
platforms='any',
install_requires=[
'pyyaml==3.10',
],
tests_require=[
'nose==1.2.1',
'nose-cov==1.6',
],
test_suite='nose.collector',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)