-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.06 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
from pathlib import Path
from setuptools import setup, find_packages
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
CLASSIFIERS = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
REQUIRES = []
# TODO pin down versions of libraries
TEST_REQUIRES = ["pytest"]
DEV_REQUIRES = ["twine", "wheel"]
setup(
name="paramlogger",
version="0.0.1",
author="Vivek Dani",
description="This library helps logging the inputs and outputs of a method just by adding a decorator on that method.",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/vivek-dani/paramlogger",
classifiers=CLASSIFIERS,
install_requires=REQUIRES,
python_requires=">=3.8",
packages=find_packages(exclude=["tests*", "scripts*"]),
extras_require={"test": TEST_REQUIRES, "dev": DEV_REQUIRES},
package_data={"": ["*/*requirements.txt"]},
)