-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
35 lines (31 loc) · 1.06 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
#!/usr/bin/env python
# Copyright (c) 2013 Will Harris
# See the file license.txt for copying permission.
from setuptools import setup
VERSION = "0.5.1"
base_url = "http://github.com/wharris/dougrain/"
setup(
name='dougrain',
version=VERSION,
description='HAL JSON parser and generator',
author='Will Harris',
author_email='[email protected]',
url=base_url,
packages=['dougrain'],
provides=['dougrain'],
long_description=open("README.rst").read(),
install_requires=['uritemplate >= 0.6'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Operating System :: POSIX',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)