forked from thinkingserious/sendgrid-python-dmarc-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 608 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 608 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': 'This is a DMARC report parser that accepts either an XML or zipped file as input at an attachment via email',
'author': 'Elmer Thomas',
'url': '',
'download_url': '',
'author_email': 'elmer.thomas@sendgrid.com',
'version': '0.1',
'install_requires': ['nose', 'Flask', 'Flask-SQLAlchemy', 'Jinja2', 'Werkzeug', 'distribute', 'wsgiref', 'mysql-python', 'requests', 'simplejson', 'configobj'],
'packages': ['dmarc_parser'],
'scripts': [],
'name': 'DMARC Parser'
}
setup(**config)