-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
55 lines (49 loc) · 1.73 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
48
49
50
51
52
53
54
55
"""Setup for the morejson package."""
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import versioneer
README_RST = ''
with open('README.rst') as f:
README_RST = f.read()
setup(
name='morejson',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Wraps Python json, supporting more Python built-in types.",
long_description=README_RST,
license='MIT',
author="Shay Palachy",
author_email="shay.palachy@gmail.com",
url='https://github.com/shaypal5/morejson',
packages=['morejson'],
install_requires=[],
setup_requires=[],
tests_require=['nose', 'coverage', 'pytz', 'tzlocal'],
test_suite='nose.collector',
platforms=['any'],
classifiers=[
# Trove classifiers
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers)
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Topic :: Other/Nonlisted Topic',
'Intended Audience :: Developers',
],
keywords='json datetime timedelta timezone frozenset',
)