-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 887 Bytes
/
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
from setuptools import setup
setup(
name='pyreposync',
version='0.0.7',
description='PyReposync repository sync & snapshot tool',
long_description="""
PyReposync allows to sync and snaptshot arbitrary RPM repositories, without using rsync
Copyright (c) 2018, Stephan Schultchen.
License: MIT (see LICENSE for details)
""",
packages=['pyreposync'],
scripts=[
'contrib/pyreposync',
],
url='https://github.com/schlitzered/pyreposync',
license='MIT',
author='schlitzer',
author_email='[email protected]',
test_suite='test',
platforms='posix',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
setup_requires=[
'requests'
],
install_requires=[
'requests'
],
keywords=[
'rpm', 'sync'
]
)