forked from allisson/python-simple-rest-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
79 lines (65 loc) · 1.94 KB
/
setup.py
File metadata and controls
79 lines (65 loc) · 1.94 KB
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
69
70
71
72
73
74
75
76
77
78
79
import codecs
import os
import re
from setuptools import setup, find_packages, Command
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 = [
'requests>=2.13.0',
'json-encoder>=0.4.4',
'python-status>=1.0.1',
'aiohttp>=2.2.0',
]
tests_requirements = [
'pytest',
'pytest-cov',
'vcrpy',
'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.5+',
long_description=long_description,
url='https://github.com/allisson/python-simple-rest-client',
author='Allisson Azevedo',
author_email='allisson@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'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,
},
)