-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·49 lines (43 loc) · 1.78 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
#!/usr/bin/env python3
import os.path as osp
from setuptools import setup, find_packages
top_dir = osp.abspath(osp.dirname(__file__))
info = {}
with open(osp.join(top_dir, "lemoncheesecake_requests", "__version__.py")) as fh:
exec(fh.read(), info)
setup(
name="lemoncheesecake-requests",
version=info["__version__"],
description="Test Storytelling for requests",
long_description=open(osp.join(top_dir, "README.rst")).read(),
author="Nicolas Delon",
author_email="[email protected]",
license="Apache License (Version 2.0)",
url="https://lemoncheesecake-requests.readthedocs.io",
python_requires='>=3.7',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
],
keywords="QA testing lemoncheesecake requests",
project_urls={
'Documentation': 'https://lemoncheesecake-requests.readthedocs.io.',
'Source': 'https://github.com/lemoncheesecake/lemoncheesecake-requests',
'Tracker': 'https://github.com/lemoncheesecake/lemoncheesecake-requests/issues',
},
packages=find_packages(),
install_requires=("lemoncheesecake~=1.11", "requests~=2.23")
)