-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·38 lines (34 loc) · 1.21 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
import os
from pyappimage.version import __version__
from setuptools import find_packages
from setuptools import setup
CLASSIFIERS = """\
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Programming Language :: Python
Topic :: Software Development
Operating System :: POSIX :: Linux
"""
setup(
name="pyappimage",
version=__version__,
packages=find_packages(),
url="https://github.com/srevinsaju/pyappimage",
license="MIT",
author="srevinsaju",
author_email="srevinsaju@sugarlabs.org",
description="Python Appimage builder",
project_urls={
"Bug Tracker": "https://github.com/srevinsaju/pyappimage/issues",
"Source Code": "https://github.com/srevinsaju/pyappimage",
},
platforms=["Linux"],
include_package_data=True,
package_data={"pyappimage": ["assets/*"]},
install_requires=["PyInstaller", "click", "halo", "pyyaml"],
dependency_links=["http://github.com/srevinsaju/zap/archive/master.tar.gz"],
python_requires=">=3.4",
entry_points={"console_scripts": ("pyappimage = pyappimage.cli:cli",)},
classifiers=[s for s in CLASSIFIERS.split(os.linesep) if s.strip()],
)