-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 1.04 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="programs-integrator",
version="0.3",
author="artudi54",
description="Daemon program for dynamically generating 'Programs' directory",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/artudi54/programs-integrator",
packages=find_packages(),
package_data={"": ["*.ui", "*.png"]},
scripts=["bin/programs-integrator", "bin/programs-integrator-ctl"],
data_files=[("share/icons", ["resources/share/icons/programs-integrator.svg"]),
("share/applications", ["resources/share/applications/programs-integrator.desktop"]),
("share/systemd/user", ["resources/share/systemd/user/programs-integrator.service"])],
install_requires=open('requirements.txt').read().splitlines(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux"],
)