forked from codecobblers/dirtyjson
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
47 lines (42 loc) · 1.76 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
46
47
#!/usr/bin/env python
from __future__ import with_statement
import sys
import subprocess
try:
from setuptools import setup, Command
except ImportError:
from distutils.core import setup, Command
from distutils.errors import CCompilerError, DistutilsExecError, \
DistutilsPlatformError
VERSION = '1.0.7'
DESCRIPTION = "JSON decoder for Python that can extract data from the muck"
with open('README.rst', 'r') as f:
LONG_DESCRIPTION = f.read()
setup(
name="dirtyjson",
version=VERSION,
packages=['dirtyjson', 'dirtyjson.tests'],
author="Scott Maxwell",
author_email="scott@codecobblers.com",
url="https://github.com/codecobblers/dirtyjson",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
license="MIT License",
classifiers=["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Academic Free License (AFL)",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules"],
platforms=['any'],
test_suite="dirtyjson.tests",
zip_safe=True)