-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·52 lines (49 loc) · 1.67 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
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/python
# -*- coding: utf-8 -*-
# vim: ts=4
###
#
# Copyright (c) 2018-2025 Andalugeeks
# Authors:
# - Ksar Feui <[email protected]>
# - J. Félix Ontañón <[email protected]>
# - Sergio Soto <[email protected]>
from setuptools import setup
# read the contents of your README file
from os import path
import io
THIS_DIRECTORY = path.abspath(path.dirname(__file__))
with io.open(path.join(THIS_DIRECTORY, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='andaluh',
version='0.3.1',
description='Transliterate español (spanish) spelling to andaluz proposals',
long_description=long_description,
long_description_content_type='text/markdown',
author='J. Félix Ontañón',
author_email='[email protected]',
url='https://andaluh.es',
project_urls={
"Source Code": "https://github.com/andalugeeks/andaluh-py"
},
python_requires=">=3.5",
platforms=['win32', 'linux2'],
license='GNU LESSER GENERAL PUBLIC LICENSE',
classifiers=[
"Topic :: Text Processing",
"Topic :: Software Development :: Internationalization",
"Natural Language :: Spanish",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
packages=['andaluh'],
package_dir={'andaluh': 'andaluh'},
scripts=['bin/andaluh']
)