forked from cadia-lvl/regina_normalizer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (24 loc) · 810 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
from setuptools import setup, find_packages
with open("README.md", "r") as readme:
long_description = readme.read()
setup(
name="regina-normalizer",
version="0.0.6",
author = "Helga Svala Sigurðardóttir, Anna Björk Nikulásdóttir",
author_email = "[email protected]",
url="https://github.com/cadia-lvl/regina-normalizer/tree/master/regina_package",
description = "A text normalization package for Icelandic",
license="MIT",
long_description = long_description,
long_description_content_type = "text/markdown",
packages=find_packages(),
package_data={"": ["*.txt"]},
include_package_data=True,
install_requires=['setuptools', 'pos >= v2.1.0', 'wandb'],
python_requires='>=3.5',
entry_points={
'console_scripts': [
'regina_normalizer=regina_normalizer.main:main'
]
}
)