-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 945 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 945 Bytes
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='uctools',
version="1.3.0",
description='Unicode tools.',
long_description=open('README.rst').read(),
url='https://github.com/luismsgomes/uctools',
author='Luís Gomes',
author_email='luismsgomes@gmail.com',
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Text Processing :: General',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
python_requires='>=3',
keywords='text unicode character',
package_dir={'': 'src'},
py_modules=['ucinfo', 'ucenum', 'ucnorm'],
entry_points={
'console_scripts': [
'ucinfo=ucinfo:_main',
'ucenum=ucenum:_main',
'ucnorm=ucnorm:_main',
],
},
)