forked from bcj/AttrDict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (39 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
42
43
44
45
"""
To install AttrDict:
python setup.py install
"""
from setuptools import setup
DESCRIPTION = "A dict with attribute-style access"
try:
LONG_DESCRIPTION = open('README.rst').read()
except:
LONG_DESCRIPTION = DESCRIPTION
setup(
name="attrdict",
version="2.0.1",
author="Brendan Curran-Johnson",
author_email="[email protected]",
packages=("attrdict",),
url="https://github.com/bcj/AttrDict",
license="MIT License",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=(
"Development Status :: 7 - Inactive",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
),
install_requires=(
'six',
),
tests_require=(
'nose>=1.0',
'coverage',
),
zip_safe=True,
)