-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2d1c6f
commit a6d6298
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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', | ||
) |