-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (37 loc) · 1.23 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
import pathlib
from distutils.core import setup
long_description = pathlib.Path("README.rst").read_text()
setup(
name="object-tracker",
packages=["object_tracker"],
version="2.0.0",
license="three-clause BSD",
description="A pure python object change and history tracker. Monitor all changes in your objects lifecycle and trigger callback functions to capture them.",
long_description=long_description,
long_description_content_type= 'text/x-rst',
author="Saurabh Pujari",
author_email="saurabhpuj99@gmail.com",
url="https://github.com/saurabh0719/object-tracker",
keywords=[
"object_tracker",
"object-tracker",
"changelog",
"object history",
"tracker",
"change tracker",
"history",
"state",
"state tracker",
],
project_urls={
"Documentation": "https://github.com/saurabh0719/object-tracker#README",
"Source": "https://github.com/saurabh0719/object-tracker",
},
install_requires=[],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
],
)