Skip to content

Commit a419148

Browse files
author
rharlev
committed
add setup.py
1 parent b3259b8 commit a419148

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

setup.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)