-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 724 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
from os.path import join, dirname
requirements = open(join(dirname(__file__), 'requirements.txt')).readlines()
requirements = tuple(map(lambda x: x.strip(), requirements))
setup(
name='apirequests',
version='0.0.8',
packages=find_packages(),
author='san4ez',
url='https://github.com/alexandr-san4ez/apirequests',
description='HTTP client built around "requests" library',
include_package_data=True,
long_description=open(join(dirname(__file__), 'README.rst')).read(),
install_requires=requirements,
test_suite='tests',
keywords='HTTP API REST HTTP-client requests',
license='MIT',
)