-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (45 loc) · 1.26 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
import pathlib
import setuptools
with pathlib.Path('README.md').open() as f:
long_description = f.read()
setuptools.setup(
name='uvalde',
version='2.0.1',
author='Carl George',
author_email='[email protected]',
description='Yum repository management tool',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/carlwgeorge/uvalde',
license='MIT',
package_dir={'': 'source'},
packages=['uvalde'],
# f-strings
python_requires='>=3.6',
# markdown content type
setup_requires=['setuptools>=38.6.0'],
install_requires=[
'appdirs',
'click',
'createrepo_c',
'selinux',
'peewee>=3.0.0',
],
extras_require={
'tests': [
# tmp_path fixture
'pytest>=3.9',
'pytest-cov',
'pytest-flake8',
'repomd',
],
},
entry_points={'console_scripts': ['uvalde=uvalde:main']},
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Topic :: System :: Archiving :: Packaging',
'Topic :: System :: Software Distribution',
],
)