-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
31 lines (29 loc) · 1.11 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name="pants",
version="1.0.1",
description="An asynchronous networking library for Python.",
author="ecdavis",
author_email="me@ezdwt.com",
url="http://www.pantspowered.org/",
download_url="https://github.com/ecdavis/pants/tarball/pants-1.0.1",
packages=["pants", "pants.contrib", "pants.http", "pants.util", "pants.web"],
package_data={"pants.web": ["data/*.css", "data/*.png", "data/*.html"]},
classifiers=[
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
"Topic :: Software Development :: Libraries :: Python Modules",
],
scripts=[
"bin/pants_dig.py",
],
)