forked from podio/podio-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 707 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name="pypodio2",
version="0.2",
description="Python wrapper for the Podio API",
author="Podio",
author_email="mail@podio.com",
url="https://github.com/podio/podio-py",
license="MIT",
packages=["pypodio2"],
install_requires=["httplib2"],
tests_require=["nose", "mock", "tox"],
test_suite="nose.collector",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)