forked from anxolerd/useresponse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (36 loc) · 1.2 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
import re
import os.path
from setuptools import setup, find_packages
with open(
os.path.join(os.path.dirname(__file__), 'useresponse', '__init__.py')
) as f:
VERSION = re.match(r".*__version__ = '(.*?)'", f.read(), re.S).group(1)
with open('README.rst', 'r', encoding='utf-8') as f:
readme = f.read()
setup(
name='useresponse',
version=VERSION,
description='Python client for Useresponse',
long_description=readme,
long_description_content_type='text/x-rst',
author='Oleksandr Kovalchuk',
author_email='[email protected]',
url='https://github.com/anxolerd/useresponse',
packages=find_packages(),
install_requires=[
'requests',
],
python_requires='>=3.6',
license='MIT',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)