-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.29 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.29 KB
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
#!/usr/bin/env python3
#
# Copyright (c) 2018 Tatu Ylonen, https://ylonen.org
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(name="wiktfinnish",
version="0.4.0",
description="Finnish morphology (including verb forms, comparatives, cases, possessives, clitics)",
long_description=long_description,
long_description_content_type="text/markdown",
author="Tatu Ylonen",
author_email="ylo@clausal.com",
url="https://ylonen.org",
license="MIT",
download_url="https://github.com/tatuylonen/wiktfinnish",
packages=["wiktfinnish"],
# install_requires=[],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: Finnish",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Text Processing",
"Topic :: Text Processing :: Linguistic",
])