-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 956 Bytes
/
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
from setuptools import setup
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name='lazyjson',
version='0.0.1',
license='MIT',
author='Will Stott',
author_email='[email protected]',
url='https://github.com/willstott101/lazyjson',
long_description=long_description,
long_description_content_type="text/x-rst",
py_modules=['lazyjson'],
requires=[],
description='Encode existing JSON strings within new JSON documents efficiently...ish',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
project_urls={
'Source': 'https://github.com/willstott101/lazyjson',
},
python_requires='>=3.5',
)