-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 930 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
30
31
32
from setuptools import setup, find_packages
def readme():
with open("README.md", "r") as f:
return f.read()
setup(
name="hankify_pw",
version="1.1.0",
description="Generate Hank Preston-y passwords",
url="https://github.com/xorrkaz/hankify-pw",
entry_points={"console_scripts": ["hankify-pw=hankify_pw:hanky_pass"]},
package_data={"hankify_pw": ["words.txt"]},
include_package_data=True,
long_description_content_type="text/markdown",
long_description=readme(),
author="Joe Clarke",
author_email="[email protected]",
license="MIT",
setup_requires=["wheel"],
packages=find_packages(exclude=["tests", "tests.*"]),
zip_safe=False,
keywords=["Elemental"],
python_requires=">=3.6",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
],
)