-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
46 lines (42 loc) · 1.4 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 find_packages
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
LONG_DESCRIPTION = README + '\n\n' + CHANGES
requires = ('pyramid',
'pyramid_tm')
extras_require = {'db': ('sqlalchemy',
'zope.sqlalchemy')}
setup(name='Poulda',
version='0.9',
description='Poulda - a simple upload service',
long_description=LONG_DESCRIPTION,
classifiers=(
'Development Status :: 4 - Beta',
'Framework :: Pyramid',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Natural Language :: French',
'Programming Language :: Python :: 2.7',
),
author='Damien Baty',
author_email='[email protected]',
url='http://packages.python.org/Poulda',
keywords='web wsgi pyramid file upload',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='poulda',
install_requires=requires,
extras_require=extras_require,
entry_points='''\
[paste.app_factory]
main = poulda.app:make_app
''',
message_extractors={'.': (
('**.py', 'lingua_python', None),
('**.pt', 'lingua_xml', None),
)}
)