-
Notifications
You must be signed in to change notification settings - Fork 201
/
Copy pathsetup.py
49 lines (44 loc) · 1.37 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
41
42
43
44
45
46
47
48
49
# coding: utf-8
from __future__ import unicode_literals
from setuptools import setup, find_packages
from essay import VERSION
with open('./README.md') as f:
long_description = f.read()
setup(
name='essay',
version=VERSION,
description='持续部署工具',
long_description=long_description,
author='SohuTech',
author_email='[email protected]',
url='http://github.com/SohuTech/essay',
packages=find_packages(exclude=['*.pyc', 'fabfile']),
include_package_data=True,
install_requires=[
'Fabric3',
'Jinja2',
'requests',
],
entry_points={
'console_scripts': [
'es = essay.main:main',
'ep = essay.main:pip_main',
]
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)