-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (25 loc) · 861 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
from setuptools import setup
setup(
name='jsonbox',
description='Python wrapper for jsonbox.io',
url='https://github.com/harlev/jsonbox-python',
author="Ron Harlev",
author_email="[email protected]",
version='1.2.1',
packages=['.'],
license='MIT',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
install_requires=['requests', 'six'],
python_requires='>=2.7',
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
)