-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (34 loc) · 1.06 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
from setuptools import setup
setup(
name='el_data',
version='0.3.5',
description='Helper functions for accessing internationalisation data',
url='https://github.com/enabling-languages/el_data',
author='Andrew Cunningham',
author_email='',
license='MIT',
packages=['el_data'],
install_requires=[
'hexdump',
'lxml',
'pyicu',
'requests',
'rich',
'tabulate'
],
include_package_data=True,
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development :: Internationalization',
'Topic :: Software Development :: Localization',
'Topic :: Text Processing :: Linguistic',
'Topic :: Utilities'
],
)