-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 759 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 759 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
from setuptools import setup, find_packages
setup(
name="uengine",
version="3.6.13",
description="a micro webframework based on flask and pymongo",
url="https://github.com/viert/uengine",
author="Pavel Vorobyov",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
include_package_data=True,
package_data={
"uengine": ["*.txt", "*.py"]
},
install_requires=[
"jinja2",
"flask",
"pymongo",
"cachelib",
"lazy_object_proxy",
"ipython",
"pylint",
"mongomock",
"requests",
"mtprof",
],
entry_points={
"console_scripts": [
"uengine=uengine.__main__:main",
]
}
)