-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 780 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup
setup(
name="apitopy",
description="Pythonic access to HTTP APIs",
long_description="Access arbitrary HTTP APIs as if they were python objects",
long_description_content_type="text/markdown",
version="0.6.0",
author="Carles Barrobés",
author_email="carles@barrobes.com",
url="https://github.com/txels/apitopy",
py_modules=["apitopy"],
install_requires=["requests", "supermutes"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
)