-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 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
34
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="appimage-tools",
version="0.0.1",
author="Alexis Lopez Zubieta",
author_email="[email protected]",
description="Manage Type 3 AppImages",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"appimage = cli.__main__:main",
]
},
url="https://github.com/AppImageCrafters/appimage-tools",
project_urls={
"Bug Tracker": "https://github.com/AppImageCrafters/appimage-tools/issues",
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
setup_requires="setuptools-pipfile",
use_pipfile=True,
)