forked from PFWhite/auditor
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 735 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 735 Bytes
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
from setuptools import setup
with open('auditor/version.py') as ver:
exec(ver.read())
setup(name='auditor',
version=__version__,
description='Makes sure your CSV data is complian.',
url='http://github.com/ctsit/auditor',
author='Patrick White',
author_email='pfwhite9@gmail.com',
maintainer='CTS-IT at the University of Florida',
maintainer_email='ctsit@ctsi.ufl.edu',
license='Apache2.0',
packages=['auditor'],
entry_points={
'console_scripts': [
'auditor = auditor.__main__:cli_run',
],
},
install_requires=[
'docopt==0.6.2',
'pyyaml==3.12',
'python-dateutil==2.6.1'],
zip_safe=False)