-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (36 loc) · 1.38 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
with open("wordtrie/VERSION") as f:
version = f.read().strip()
setup(
name="wordtrie",
author="Mark Howison",
author_email="mark@howison.org",
version=version,
url="https://github.com/mhowison/wordtrie",
description="WordTrie: a simple trie (prefix tree) for word and phrase matching",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Text Processing",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: Indexing",
"Topic :: Text Processing :: Linguistic"
],
provides=["wordtrie"],
packages=find_packages(),
package_data={"wordtrie": ["VERSION"]},
python_requires=">=3"
)