-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
62 lines (56 loc) · 2.89 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from os.path import abspath, dirname, join
from setuptools import setup, find_packages
from pyerge import __version__
here = abspath(dirname(__file__))
with open(join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open(join(here, 'requirements.txt'), encoding='utf-8') as f:
requires = f.read().splitlines()
setup(
name='pyerge',
version=__version__,
description='It is Python wrapper tool for emerge (Gentoo package manager - Portage). It can mount RAM disk of defined size and compile packages inside it',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/emcek/pyerge',
author='Michal Plichta',
license='MIT License',
entry_points={'console_scripts': ['pye = pyerge.cli:run_parser',
'e_sync = pyerge.tools:e_sync',
'e_dl = pyerge.tools:e_dl',
'e_curr = pyerge.tools:e_curr',
'e_eut = pyerge.tools:e_eut',
'e_eta = pyerge.tools:e_eta',
'e_log = pyerge.tools:e_log',
'e_sta = pyerge.tools:e_sta',
'e_prog = pyerge.tools:e_prog',
'e_upd = pyerge.tools:e_upd',
'e_raid = pyerge.tools:run_e_raid',
'e_live = pyerge.tools:run_e_live',
'glsa = pyerge.glsa:run_glsa']},
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: X11 Applications',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Desktop Environment',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Monitoring',
'Topic :: Utilities'],
keywords='gentoo portage emerge conky linux',
packages=find_packages(exclude=['tests']),
install_requires=requires,
include_package_data=True,
python_requires='>=3.7',
extras_require={'testing': ['pytest']},
project_urls={'Bug Reports': 'https://github.com/emcek/pyerge/issues',
'Source': 'https://github.com/emcek/pyerge'},
)