forked from wuttem/flask-dataview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (34 loc) · 964 Bytes
/
setup.py
File metadata and controls
45 lines (34 loc) · 964 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here,'README.md')) as readme_file:
readme = readme_file.read()
TEST_REQS = [
'pytest',
'mock'
]
REQUIRED_PACKAGES = [
'flask',
'werkzeug',
'pendulum'
]
config = {
'description': 'Flask DataView',
'author': 'Matthias Wutte',
'description': "Flask Data Visualization Helpers",
'long_description': readme,
'long_description_content_type': "text/markdown",
'url': 'https://github.com/wuttem/flask-dataview',
"include_package_data": True,
'download_url': 'https://github.com/wuttem',
'author_email': 'matthias.wutte@gmail.com',
'version': '0.3.2',
'install_requires': REQUIRED_PACKAGES,
'tests_require': TEST_REQS,
'packages': find_packages(),
'scripts': [],
'name': 'flask-dataview'
}
setup(**config)