-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 796 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from setuptools import setup
setup(
name="pantsmud",
version="0.5.0",
description="A simple MUD library built using the Pants networking framework.",
author="ecdavis",
author_email="me@ezdwt.com",
url="http://github.com/ecdavis/pantsmud",
download_url="https://github.com/ecdavis/pantsmud/tarball/master",
packages=["pantsmud", "pantsmud.driver", "pantsmud.util"],
install_requires=["pants >= 1.0"],
tests_require=['mock'],
classifiers=[
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Natural Language :: English"
]
)