-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (29 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
27
28
29
30
31
32
33
34
35
from setuptools import find_packages
from setuptools import setup
with open("README.md", "r") as readme:
long_description = readme.read()
version = "0.6.1"
setup(
name="py-whmcs",
version=version,
description="Python interface to the WHMCS API.",
url="https://github.com/null-none/py-whmcs",
long_description=long_description,
long_description_content_type="text/markdown",
license="GPL-3",
keywords="whmcs api library",
packages=find_packages(),
install_requires=[
"requests >= 2.21.0",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
command_options={
"build_sphinx": {
"version": ("setup.py", version),
},
},
)