This repository was archived by the owner on Nov 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (44 loc) · 1.64 KB
/
Copy pathsetup.py
File metadata and controls
54 lines (44 loc) · 1.64 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
pkg_root = os.path.dirname(__file__)
# Error-handling here is to allow package to be built w/o README included
try: readme = open(os.path.join(pkg_root, 'README.md')).read()
except IOError: readme = ''
setup(
name = 'distfiles-convergence',
version = '14.05.0',
author = 'Mike Kazantsev',
author_email = 'mk.fraggod@gmail.com',
license = 'WTFPL',
keywords = 'distfiles security perspectives'
' convergence mirrors consistency checksum hash',
url = 'http://github.com/mk-fg/distfiles-convergence',
description = 'Tool to verify integrity of the local source'
' tarballs (or distfiles) by mirror network consensus',
long_description = readme,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: System Administrators',
'License :: OSI Approved',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Internet',
'Topic :: Security',
'Topic :: System :: Archiving',
'Topic :: System :: Archiving :: Packaging',
'Topic :: System :: Monitoring',
'Topic :: System :: Software Distribution' ],
install_requires = ['layered-yaml-attrdict-config'],
extras_require = {
'remotes.gentoo_portage': ['plumbum'],
'remotes.rsync': ['plumbum'] },
packages = find_packages(),
include_package_data = True,
package_data = {'distfiles_convergence': ['core.yaml']},
entry_points = dict(console_scripts=[
'distfiles-convergence = distfiles_convergence.core:main' ]) )