-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
32 lines (30 loc) · 1.09 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
24
25
26
27
28
29
30
31
32
from setuptools import setup
from lazy_ips import __version__
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='lazy_ips',
version=__version__,
description='IPS patcher for Linux. Gtk3 and CLI user interfaces.',
long_description=long_description,
author='Boris Timofeev',
url='https://github.com/btimofeev/lazy_ips',
license='GNU GPLv3',
install_requires=['PyGObject'],
packages=['lazy_ips',
'lazy_ips.patch'],
entry_points={"console_scripts": ["lazy-ips-cli=lazy_ips.cli:main"],
"gui_scripts": ["lazy-ips=lazy_ips.gtk:main"]},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications :: GTK',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Intended Audience :: End Users/Desktop',
'Natural Language :: English',
'Topic :: Utilities',
]
)