-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
51 lines (45 loc) · 1.63 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
50
51
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup
REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines()]
classifiers = [
"Framework :: Bottle",
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development']
description = "Boilerplate code for new Bottle projects"
try:
long_description = open('README.rst').read()
except:
long_description = description
url = 'https://github.com/bottlepy/bottle-boilerplate'
setup(name='bottle-boilerplate',
version=0.3,
description=description,
long_description=long_description,
classifiers=classifiers,
keywords='bottle boilerplate startproject doc',
author="Thiago Avelino",
author_email="[email protected]",
url=url,
download_url="{0}/tarball/master".format(url),
license="MIT",
install_requires=REQUIREMENTS,
entry_points={
'console_scripts': ["bottle-boilerplate = bottle_boilerplate:main"]
},
py_modules=['bottle_boilerplate'],
scripts=['bottle_boilerplate.py'],
include_package_data=True,
zip_safe=False)