-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (37 loc) · 1.28 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
# -*- encoding: UTF-8 -*-
import os
from setuptools import setup, find_packages
# here = path.abspath(path.dirname(__file__))
# with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
# long_description = f.read()
setup(
name='eplus',
version='1.2.2',
description='Google App Engine extensions',
# long_description=long_description,
url='https://github.com/kulik0v/eplus',
download_url='https://github.com/kulik0v/eplus/archive/master.zip',
author='WIX',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
packages=find_packages(),
# packages=['eplus'],
install_requires=['PyYAML'],
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
entry_points={
'console_scripts': [
'app_local_shell=eplus.shell:shell_local',
'app_remote_shell=eplus.shell:shell_remote',
'appcfg_update=eplus.shell:appcfg_update',
],
},
)