-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
39 lines (35 loc) · 1.24 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
#!/user/bin/env python
import re
from setuptools import setup, find_packages
version = re.search(
'^__version__\s*=\s*\'(.*)\'',
open('cucco/__init__.py').read(),
re.M).group(1)
setup(name='cucco',
version=version,
description='Python library for text normalization',
long_description=open('README.rst').read(),
author='David Moreno-Garcia',
author_email='[email protected]',
license='MIT',
url='https://github.com/davidmogar/cucco',
download_url='https://github.com/davidmogar/cucco/tarball/' + version,
keywords=['normalization', 'language', 'text', 'manipulation'],
packages=find_packages(exclude=['tests']),
entry_points={
'console_scripts': [
'cucco=cucco.cli:cli'
]
},
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Libraries',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
]
)