-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
29 lines (27 loc) · 886 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
import io
import re
from setuptools import setup
VERSION_FILE = "closeio_api/__init__.py"
with io.open(VERSION_FILE, "rt", encoding="utf8") as f:
version = re.search(r'__version__ = ([\'"])(.*?)\1', f.read()).group(2)
setup(
name="closeio",
packages=['closeio_api'],
version=version,
description="Close API Python Client",
long_description="Close API Python Client",
author="Close Team",
url="https://github.com/closeio/closeio-api/",
install_requires=[
'requests >= 2.11.1'
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
)