-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·41 lines (33 loc) · 1.08 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
#!/usr/bin/env python
# coding: utf-8
import park
# Require setuptools. See http://pypi.python.org/pypi/setuptools for
# installation instructions, or run the ez_setup script found at
# http://peak.telecommunity.com/dist/ez_setup.py
from setuptools import setup
# Load the test requirements. These are in a separate file so they can
# be accessed from Travis CI and tox.
with open("test-requirements.txt") as fd:
tests_require = list(fd)
setup(
name="park",
version=park.__version__,
author="Peter Teichman",
author_email="[email protected]",
license="MIT",
url="https://github.com/litl/park",
description="A key-value store with ordered traversal of keys",
py_modules=["park"],
setup_requires=[
"unittest2==1.1.0"
],
test_suite="unittest2.collector",
tests_require=tests_require,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python"
]
)