-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 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
#!/usr/bin/env python3
from setuptools import setup
import sys
from cleaner import __version__
if sys.platform == "win32":
files=[]
else:
files=[
('/lib/systemd/system', ['cleaner/install/recodex-cleaner.service', 'cleaner/install/recodex-cleaner.timer']),
('/etc/recodex/cleaner', ['cleaner/install/config.yml'])
]
setup(name='recodex-cleaner',
version=__version__,
description='Clean cache which is used by ReCodEx workers',
author='ReCodEx Team',
author_email='',
url='https://github.com/ReCodEx/cleaner',
license="MIT",
keywords=['ReCodEx', 'cleaner', 'cache'],
classifiers=["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
'Operating System :: OS Independent',
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5"],
packages=['cleaner'],
package_data={'': ['./install/*']},
data_files=files,
entry_points={'console_scripts': ['recodex-cleaner = cleaner.main:main']}
)