-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.35 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
install_requires = ["argcomplete"]
setuptools.setup(
name="xkcd-pass",
version="1.1.3",
author="Adam Birds",
author_email="[email protected]",
description="Generate secure multiword passwords/passphrases, inspired by XKCD",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/adambirds/xkcd-pass-python",
project_urls={
"Bug Tracker": "https://github.com/adambirds/xkcd-pass-python/issues",
},
license="LGPLv3",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": ["xkcd-pass=xkcd_pass.xkcd_pass:main"]},
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
include_package_data=True,
python_requires=">=3.6",
install_requires=install_requires,
)