forked from danielbala/API-Examples
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 905 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 905 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
25
26
27
from setuptools import setup, find_packages
setup(
name="mindbody_api",
packages=find_packages(),
version="1.0.4",
url="https://github.com/mgladki/API-Examples",
download_url="https://github.com/mgladki/API-Examples/archive/1.0.4.tar.gz",
keywords=["Swagger", "MINDBODY Public API"],
install_requires=[
"certifi>=2017.4.17",
"python-dateutil>=2.1",
"six>=1.10",
"urllib3>=1.23"
],
include_package_data=True,
description="Mindbody Public API v6 (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3'
]
)