forked from Kotti/deform_bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (40 loc) · 1.17 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
import os
from setuptools import setup
from setuptools import find_packages
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
except:
README = ''
CHANGES = ''
requires = [
'deform',
]
tests_require = [
'mock',
'pytest',
'pytest-cov',
]
setup(
name='deform_bootstrap',
version='0.2.10dev',
description="Twitter Bootstrap compatible widgets, templates and styles for the deform form library",
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
],
keywords='twitter bootstrap deform styles css web forms form',
author='Daniel Nouri and contributors',
author_email="pylons-discuss@googlegroups.com",
url='https://github.com/Kotti/deform_bootstrap',
license='BSD-derived (http://www.repoze.org/LICENSE.txt)',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
extras_require={
'testing': tests_require,
},
)