-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
executable file
·33 lines (29 loc) · 1.01 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
#!/usr/bin/env python3
from setuptools import setup
from english_words.version import NAME, DESCRIPTION, VERSION
# Parse readme to include in PyPI page
with open("README.md") as f:
long_description = f.read()
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION.capitalize(),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mwiens91/english-words-py",
author="Matt Wiens",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
],
packages=["english_words"],
package_data={"english_words": ["data/*.pickle"]},
)