-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (30 loc) · 1016 Bytes
/
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='el_utilities',
version='0.1.1',
description='Utilities used in EL apps and services',
url='https://github.com/enabling-languages/el_utilities/',
author='Andrew Cunningham',
author_email='',
license='MIT',
packages=['el_utilities'],
install_requires=[
'el_internationalisation',
'regex',
"pyicu"
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Internationalization',
'Topic :: Software Development :: Localization',
'Topic :: Text Processing :: Linguistic',
'Topic :: Utilities'
],
)