-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (44 loc) · 1.26 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
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()
install_requires = [
'djed.message',
'djed.renderer',
'pyramid',
'pyramid_chameleon',
'pytz',
]
tests_require = [
'djed.testing',
]
setup(
name='djed.form',
version='0.0',
description='Form generation library for Pyramid',
long_description='\n\n'.join([README, CHANGES]),
classifiers=[
"Framework :: Pyramid",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Internet :: WWW/HTTP",
],
author='Djed developers',
author_email='[email protected]',
url='https://github.com/djedproject/djed.form',
license='ISC License (ISCL)',
keywords='web pyramid pylons',
packages=['djed.form'],
include_package_data=True,
install_requires=install_requires,
extras_require={
'testing': tests_require,
},
test_suite='nose.collector',
)