-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 1.02 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
from os import path
from setuptools import find_packages, setup
working_directory = path.abspath(path.dirname(__file__))
with open(path.join(working_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="diff_tracer",
version="0.0.1",
description="Compare two responses to see if there is any difference or if both are having identical properties and values.",
package_dir={"": "diff_tracer"},
packages=find_packages(where="diff_tracer"),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/betofigueiredo/diff_tracer",
author="Herberto Figueiredo",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
install_requires=[],
extras_require={
# "dev": ["pytest>=7.0", "twine>=4.0.2"],
},
python_requires=">=3.10",
)