-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
64 lines (45 loc) · 1.36 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
"""
Setup file for reporty library
"""
from setuptools import setup
DISTNAME = 'reporty'
VERSION = '0.1.91'
DESCRIPTION = 'Reporty is a python library that contains useful functions for organizing and distributing visual data'
LONG_DESCRIPTION = """
**Reporty** is a python library that contains useful
functions for organizing and distributing visual data
All features available using gmail
Limited features available using outlook
Support for other mail providers coming soon
Templates:
* Basic
* Green
* Red Stripes
* Red
More templates **coming soon**
Report any bugs or email us with questions: [email protected]
"""
LICENSE = 'BSD'
AUTHOR = 'Andrew Boyer & Ben Tengelsen'
EMAIL = '[email protected]'
URL = 'https://github.com/asboyer2/reporty'
KEYWORDS = ['report', 'email', 'plot', 'graph', 'embed']
REQUIREMENTS = ['pyaml']
PYTHON = ">=3.5"
setup(name=DISTNAME,
packages=['reporty'],
package_dir={'reporty': 'module/reporty'},
package_data={'reporty': ['templates/*.yaml']},
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
license=LICENSE,
author=AUTHOR,
author_email=EMAIL,
url=URL,
keywords=KEYWORDS,
install_requires=REQUIREMENTS,
python_requires=PYTHON,
include_package_data=True
)