-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.12 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
#!/usr/bin/env python3
from __future__ import absolute_import
from __future__ import print_function
from setuptools import setup
import re
modcontents = open('bottle_pydal.py').read()
version = re.search(r"__version__ = '([^']*)'",modcontents).group(1)
del modcontents
setup(
name = 'bottle-pydal',
version = version,
description = 'PyDAL for bottle - See Github for more info',
author = 'James P Burke',
author_email = 'james.burke1203@gmail.com',
license = 'LGPL v3.0',
py_modules = [ 'bottle_pydal' ],
url = 'https://github.com/peregrinius/bottle-pydal',
install_requires = [
'bottle >=0.9',
'pydal'
],
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Bottle',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application'
]
)