-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (22 loc) · 890 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
29
"""Setup script for vecto package."""
import setup_boilerplate
class Package(setup_boilerplate.Package):
"""Package metadata."""
name = "langmo"
description = "toolbox for various tasks in the area of vector space models of computational linguistic"
url = "http://vecto.space"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Text Processing :: Linguistic",
]
keywords = ["NLP", "linguistics", "language"]
if __name__ == "__main__":
Package.setup()