-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
65 lines (59 loc) · 2.01 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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.rst')).read()
except:
README = ''
CHANGES = ''
docs_extras = [
'Sphinx >= 1.3.1',
'docutils',
'pylons-sphinx-themes',
]
testing_extras = [
'pytest',
'pytest-cov',
'coverage'
]
setup(
name='translationstring',
version='1.4dev',
description=('Utility library for i18n relied on by various Repoze '
'and Pyramid packages'),
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Localization",
"License :: Repoze Public License",
],
python_requires='>=3.8',
keywords='i18n l10n internationalization localization gettext chameleon',
author="Chris McDonough, Agendaless Consulting",
author_email="[email protected]",
url="https://github.com/Pylons/translationstring",
license="BSD-like (http://repoze.org/license.html)",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite="translationstring",
extras_require={
'test': testing_extras,
'testing': testing_extras,
'docs': docs_extras,
},
)