forked from wepay/Python-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 990 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
27
28
29
30
31
32
33
34
from setuptools import setup
import wepay
import os.path
long_description = (
open("README.md").read()
if os.path.isfile("README.md")
else "A Python SDK for our WePay API"
)
version_str = "%s.%s.%s" % (wepay.VERSION[0], wepay.VERSION[1], wepay.VERSION[2])
setup(
name="wepayfb",
version=version_str,
packages=["wepay"],
description="A Python SDK for our WePay API.",
long_description=long_description,
long_description_content_type="text/markdown",
author="WePay API Team",
author_email="[email protected]",
license="MIT License",
url="https://github.com/freshbooks/WePay-Python-SDK",
platforms=["any"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
install_requires=["requests>=2.7.0"],
)