-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathsetup.py
31 lines (30 loc) · 1.02 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
from setuptools import setup
setup(
name='python-i18n',
version='0.3.9',
description='Translation library for Python',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Daniel Perez',
author_email='[email protected]',
url='https://github.com/tuvistavie/python-i18n',
download_url='https://github.com/tuvistavie/python-i18n/archive/master.zip',
license='MIT',
packages=['i18n', 'i18n.loaders', 'i18n.tests'],
include_package_data=True,
zip_safe=True,
test_suite='i18n.tests',
extras_require={
'YAML': ["pyyaml>=3.10"],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries'
],
)