forked from dragoon/yoda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (38 loc) · 1.17 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (38 loc) · 1.17 KB
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Yoda"""
import os.path
from setuptools import setup, find_packages
__author__ = 'David Chenaux'
__license__ = 'Modified BSD license'
__version__ = '1.0'
__maintainer__ = __author__
__email__ = 'd.chenaux@gmail.com'
__url__ = 'https://github.com/dchenaux/yoda'
__summary__ = __doc__
setup(
name='yoda',
version=__version__,
author=__author__,
author_email=__email__,
maintainer=__maintainer__,
maintainer_email=__email__,
url=__url__,
download_url=__url__,
description=__summary__,
long_description=open('README.md').read(),
license=__license__,
packages=find_packages(),
include_package_data=True,
install_requires=['mongoengine>=0.10.6', 'Flask>=0.10.1', 'flask-mongoengine>=0.7.5', 'flask_debugtoolbar>=0.10.0', 'pygments>=2.0.2'],
dependency_links=[],
classifiers=[
'Development Status :: 1.0 - Final',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: Modified BSD license',
'Programming Language :: Python',
'Topic :: Database',
],
zip_safe=True
)