-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·41 lines (36 loc) · 1.15 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
requires = [
'pyramid',
'pyramid_jinja2',
'deform',
'pyramid_layout',
'polib',
'babel',
'pyramid_flash_message',
]
setup(name='pyramid_i18n_helper',
version='0.3.6',
description='Small tool to help in i18n and l10n',
long_description=README,
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Localization",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='Sayyid Hamid Mahdavi',
author_email='[email protected]',
url='https://github.com/sahama/pyramid_i18n_helper',
keywords='web wsgi bfg pylons pyramid i18n l10n',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
extras_require={},
install_requires=requires,
)