You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
863 B
Python
39 lines
863 B
Python
7 years ago
|
import os
|
||
|
|
||
|
from setuptools import setup, find_packages
|
||
|
|
||
|
here = os.path.abspath(os.path.dirname(__file__))
|
||
|
with open(os.path.join(here, 'README.md')) as f:
|
||
|
README = f.read()
|
||
|
with open(os.path.join(here, 'CHANGES.txt')) as f:
|
||
|
CHANGES = f.read()
|
||
|
|
||
|
requires = [
|
||
|
'requests'
|
||
|
]
|
||
|
|
||
|
tests_require = [
|
||
|
'pytest',
|
||
|
'pytest-cov',
|
||
|
]
|
||
|
|
||
|
setup(
|
||
|
name='apitesting',
|
||
|
version='0.0',
|
||
|
description='A toy API client with tests',
|
||
|
long_description=README + '\n\n' + CHANGES,
|
||
|
classifiers=[
|
||
|
'Programming Language :: Python'
|
||
|
],
|
||
|
author='Androiddrew',
|
||
|
author_email='drew@androiddrew.com',
|
||
|
url='https://blog.androiddrew.com',
|
||
|
keywords='API client testing',
|
||
|
packages=find_packages(),
|
||
|
include_package_data=True,
|
||
|
zip_safe=False,
|
||
|
extras_require={
|
||
|
'testing': tests_require,
|
||
|
},
|
||
|
install_requires=requires,
|
||
|
)
|