-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 719 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 719 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
Copyright (c) 2014 windpro
Author : windpro
E-mail : windprog@gmail.com
Date : 14-12-1
Desc :
"""
from setuptools import setup
from httpappengine import __version__, __author__, __author_email__, __description__, __url__, __title__
try:
INSTALL_REQUIRES = [r for r in open('requirements.txt').read().split('\n') if len(r) > 0]
except:
INSTALL_REQUIRES = []
setup(
name=__title__,
version=__version__,
description=__description__,
url=__url__,
author=__author__,
author_email=__author_email__,
packages=['httpappengine', 'httpappengine.engine', 'httpappengine.engine.driver'],
install_requires=INSTALL_REQUIRES
)