File: setup.py

package info (click to toggle)
nwg-hello 0.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,696 kB
  • sloc: python: 668; sh: 67; makefile: 15
file content (30 lines) | stat: -rw-r--r-- 689 bytes parent folder | download
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
import os

from setuptools import setup, find_packages


def read(f_name):
    return open(os.path.join(os.path.dirname(__file__), f_name)).read()


setup(
    name='nwg-hello',
    version='0.4.2',
    description='GTK3-based greeter for greetd',
    packages=find_packages(),
    include_package_data=True,
    package_data={
        "": ["img/*", "langs/*", "template.glade"]
    },
    url='https://github.com/nwg-piotr/nwg-greeter',
    license='MIT',
    author='Piotr Miller',
    author_email='nwg.piotr@gmail.com',
    python_requires='>=3.6.0',
    install_requires=[],
    entry_points={
        'gui_scripts': [
            'nwg-hello = nwg_hello.main:main',
        ]
    }
)