-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 999 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
35
from setuptools import setup, find_packages
try:
from pathlib import Path
this_dir = Path(__file__).parent
version = (this_dir / 'version.txt').read_text()
except ImportError:
try:
with open('version.txt', 'r') as v:
version = v.read()
except IOError:
pass
except FileNotFoundError:
pass
setup(
name='objwatch',
version=version,
description='A Python library to trace and monitor object attributes and method calls.',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='aeeeeeep',
author_email='aeeeeeep@proton.me',
url='https://github.com/aeeeeeep/objwatch',
packages=find_packages(),
python_requires='>=3.6',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
include_package_data=True,
zip_safe=False,
)