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-displays',
version='0.3.26',
description='nwg-shell output configuration utility',
packages=find_packages(),
include_package_data=True,
package_data={
"": ["resources/*", "langs/*"]
},
url='https://github.com/nwg-piotr/nwg-displays',
license='MIT',
author='Piotr Miller',
author_email='nwg.piotr@gmail.com',
python_requires='>=3.6.0',
install_requires=[],
entry_points={
'gui_scripts': [
'nwg-displays = nwg_displays.main:main',
]
}
)
|