forked from akshaynagpal/w2n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (24 loc) · 868 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
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def open_file(fname):
return open(os.path.join(os.path.dirname(__file__), fname))
setup(
name = 'word2number_es',
packages = ['word2number_es'], # this must be the same as the name above
version = '1.0.1',
license=open('LICENSE.txt').read(),
description = 'Convert number words (eg. veintiuno) to numeric digits (spanish)',
author = 'Neuri',
author_email = '[email protected]',
url = 'https://github.com/Neuri-ai/w2n_es', # use the URL to the github repo
keywords = ['numbers', 'convert', 'words', 'spanish'], # arbitrary keywords
classifiers = [
'Intended Audience :: Developers',
'Programming Language :: Python'
],
long_description=open_file('README.rst').read(),
long_description_content_type="text/markdown",
)