forked from allisson/python-simple-rest-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (54 loc) · 1.92 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import codecs
import os
import re
from setuptools import Command, find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
version = "0.0.0"
changes = os.path.join(here, "CHANGES.rst")
match = r"^#*\s*(?P<version>[0-9]+\.[0-9]+(\.[0-9]+)?)$"
with codecs.open(changes, encoding="utf-8") as changes:
for line in changes:
res = re.match(match, line)
if res:
version = res.group("version")
break
# Get the long description
with codecs.open(os.path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
# Get version
with codecs.open(os.path.join(here, "CHANGES.rst"), encoding="utf-8") as f:
changelog = f.read()
install_requirements = ["python-status>=1.0.1", "httpx<0.8.0"]
tests_requirements = ["pytest", "pytest-asyncio", "pytest-cov", "pytest-httpserver", "coveralls"]
class VersionCommand(Command):
description = "print library version"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
print(version)
setup(
name="simple-rest-client",
version=version,
description="Simple REST client for python 3.6+",
long_description=long_description,
url="https://github.com/allisson/python-simple-rest-client",
author="Allisson Azevedo",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries",
],
keywords="rest client http asyncio",
packages=find_packages(exclude=["docs", "tests*"]),
setup_requires=["pytest-runner"],
install_requires=install_requirements,
tests_require=tests_requirements,
cmdclass={"version": VersionCommand},
)