-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.37 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
40
41
42
43
44
45
46
from distutils.core import setup
from setuptools import find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="breame",
packages=find_packages(
exclude=[
"*.tests",
"*.tests.*",
"tests.*",
"tests",
"examples",
"docs",
"out",
"dist",
"media",
"test",
]
),
version="0.1.2",
license="Apache-2.0",
description="Breame is a lightweight Python package with a number of tools to aid in the detection of words that have dual spellings and meanings in British and American English.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Charles Pierse",
author_email="[email protected]",
url="https://github.com/cdpierse/breame",
keywords=[
"text processing",
"natural language proessing",
"utility library",
"spelling",
"search engine",
],
classifiers=[
"Development Status :: 3 - Alpha", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.8",
],
)