-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (28 loc) · 875 Bytes
/
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="log_call",
author="Prince Roshan",
version='0.1.0',
author_email="[email protected]",
url="https://github.com/Agent-Hellboy/log_call",
description=("Library to log function or bond-method calls"),
long_description=read("README.rst"),
license="MIT",
package_dir={'': 'src'},
packages=['log_call'],
keywords=[
"logger","logging-tool"
],
python_requires=">=3.7",
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
include_package_data=True,
)