-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 993 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
from distutils.core import setup
setup(
name="pydbk",
version="1.0.0",
description="A Python tool to extract .dbk archives.",
long_description=open('README.md', encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Benjamin W. Portner",
author_email="[email protected]",
url="https://github.com/BenPortner/pydbk",
packages=["pydbk"],
install_requires=[],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers"
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
license="License :: OSI Approved :: GNU Affero General Public License v3",
entry_points={
'console_scripts': [
'pydbk=pydbk.pydbk_cli:cli'
]
},
)