-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
35 lines (31 loc) · 1.09 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
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="greek-normalisation",
version="0.5.1",
description="Python 3 utilities for validating and normalising Ancient Greek text",
url="http://github.com/jtauber/greek-normalisation",
author="James Tauber",
author_email="jtauber@jtauber.com",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
packages=["greek_normalisation"],
entry_points={
"console_scripts": [
"to2019 = greek_normalisation.convert_files:to_2019",
"toNFC = greek_normalisation.convert_files:to_nfc",
"toNFD = greek_normalisation.convert_files:to_nfd",
],
},
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Text Processing :: Linguistic",
],
)