-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·26 lines (24 loc) · 1.03 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
#!/usr/bin/env python3
from glob import glob
from os.path import basename, splitext
from setuptools import find_packages, setup
setup(name='history-object',
version="0.2.2",
description='A python decorator that tracks added and changed elements of the decorated object.',
packages=find_packages('lib'),
package_dir={'': 'lib'},
author='Connor Riva, Dave Lundgren',
author_email='[email protected], [email protected]',
url='https://bitbucket.org/westmont/history_object',
py_modules=[splitext(basename(path))[0] for path in glob('lib/*.py')],
keywords=['history', 'attributes', 'tracking', 'object', 'decorator'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
setup_requires=['setuptools-markdown'],
long_description_markdown_filename='README.md'
)