summarylogtreecommitdiffstats
path: root/setup.py
blob: 2431e8c1b037bdfbb8f24c182d727aaff3fe5675 (plain)
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
from setuptools import setup


setup(
    name="Emote",
    packages=["emote"],
    setup_requires=["setuptools"],
    entry_points={
        "gui_scripts": [
            "emote = emote.__init__:main",
        ]
    },
    install_requires=[
        "manimpango",
        "setproctitle",
        "dbus-python",
    ],
    # This is relative to the emote package
    package_data={"emote": ["static/*"]},
    # Unlike these, which are relative to setup.py
    data_files=[
        ("share/applications", ["static/emote.desktop"]),
        ("share/icons/hicolor/scalable/apps", ["static/emote.svg"]),
    ],
)