-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 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
from setuptools import setup
setup(
name='fast-json',
version='0.3.2',
platforms="all",
author="Dmitry Orlov",
author_email="me@mosquito.su",
maintainer="Dmitry Orlov",
maintainer_email="me@mosquito.su",
description="Combines best parts of json and ujson for fast serialization",
package_dir={'': 'src'},
packages=[''],
install_requires=["ujson"],
license="Apache 2",
long_description=open('README.rst').read(),
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
],
)