-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
40 lines (35 loc) · 1.01 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
def get_info(name):
basedir = os.path.dirname(__file__)
with open(os.path.join(basedir, 'restart/__init__.py')) as f:
locals = {}
exec(f.read(), locals)
return locals[name]
setup(
name='Python-RESTArt',
version=get_info('__version__'),
author=get_info('__author__'),
author_email=get_info('__email__'),
maintainer=get_info('__author__'),
maintainer_email=get_info('__email__'),
keywords='REST APIs, Python',
description=get_info('__doc__'),
license=get_info('__license__'),
long_description=get_info('__doc__'),
packages=find_packages(exclude=['tests']),
url='https://github.com/RussellLuo/restart',
install_requires=[
'six>=1.9.0',
'Werkzeug>=0.9',
'click>=4.0',
'python-easyconfig>=0.1.6',
],
entry_points={
'console_scripts': [
'restart = restart.cli:main',
],
},
)