-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
51 lines (45 loc) · 1.82 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
47
48
49
50
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from keepassxc_proxy_client import __version__
# Build the page that will be displayed on PyPI from the README and CHANGELOG
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
long_description += "\n\n"
with open("CHANGELOG.md", encoding="utf-8") as f:
long_description += f.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name="keepassxc-proxy-client",
version=__version__,
author="Henrik Boeving",
author_email="hargonix@gmail.com",
description="A CLI for keepassxc-proxy",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hargoniX/keepassxc-proxy-client",
project_urls={
"Issue tracker": "https://github.com/hargoniX/keepassxc-proxy-client/issues",
"Changelog": "https://github.com/hargoniX/keepassxc-proxy-client/blob/master/CHANGELOG.md",
},
packages=["keepassxc_proxy_client"],
zip_safe=True,
entry_points={"console_scripts": ["keepassxc_proxy_client = keepassxc_proxy_client.__main__:main"]},
install_requires=required,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Systems Administration",
"Topic :: System :: Networking",
"Topic :: Utilities",
],
)