We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3259b8 commit a419148Copy full SHA for a419148
setup.py
@@ -0,0 +1,18 @@
1
+from setuptools import setup
2
+
3
+setup(
4
+ name='jsonbox',
5
+ description='Python wrapper for jsonbox.io',
6
+ url='https://github.com/harlev/jsonbox-python',
7
+ version='0.1.0',
8
+ packages=['jsonbox'],
9
+ license='MIT',
10
+ long_description=open('README.md').read(),
11
+ long_description_content_type="text/markdown",
12
+ install_requires=['requests'],
13
+ python_requires='==2.7.*',
14
+ classifiers=[
15
+ "License :: OSI Approved :: MIT License",
16
+ "Programming Language :: Python :: 2.7",
17
+ ],
18
+)
0 commit comments