File: setup.py

package info (click to toggle)
nwg-clipman 0.2.8-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 188 kB
  • sloc: python: 422; sh: 41; makefile: 3
file content (30 lines) | stat: -rw-r--r-- 665 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-clipman',
    version='0.2.8',
    description='nwg-shell clipboard manager',
    packages=find_packages(),
    include_package_data=True,
    package_data={
        "": ["langs/*"]
    },
    url='https://github.com/nwg-piotr/nwg-clipman',
    license='MIT',
    author='Piotr Miller',
    author_email='nwg.piotr@gmail.com',
    python_requires='>=3.6.0',
    install_requires=[],
    entry_points={
        'gui_scripts': [
            'nwg-clipman = nwg_clipman.main:main'
        ]
    }
)