-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 695 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (21 loc) · 695 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
import os
import sys
from setuptools import setup
_here = os.path.abspath(os.path.dirname(__file__))
version = {}
with open(os.path.join(_here, 'w2n', 'version.py')) as f:
exec(f.read(), version)
setup(
name='w2n',
version=version['__version__'],
description=('Convert spanish number text to its numerical representation.'),
author='Alejandro Alcalde',
author_email='algui91@gmail.com',
url='https://github.com/elbaulp/text2digits_es',
license='GPL-v3',
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6'],
)