-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
50 lines (44 loc) · 1.57 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
#!/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 = "Simple and extensible administrative interface framework for Bottle"
try:
long_description = open('README.md').read()
except:
long_description = description
url = 'https://github.com/avelino/bottle-admin'
setup(name='bottle-admin',
version=0.1,
description=description,
long_description=long_description,
classifiers=classifiers,
keywords='bottle admin',
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 = bottle_boilerplate:main"]
},
py_modules=['bottle_admin'],
include_package_data=True,
zip_safe=False)