-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
42 lines (37 loc) · 1.03 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
import os.path as op
from setuptools import setup, find_packages
from oardocker import VERSION
here = op.abspath(op.dirname(__file__))
def read(fname):
''' Return the file content. '''
with open(op.join(here, fname)) as f:
return f.read()
setup(
name='oar-docker',
author='Salem Harrache',
author_email='salem@harrache.info',
version=VERSION,
url='https://oar.imag.fr/wiki:oar-docker',
setup_requires=['wheel'],
install_requires=[
'Click',
'docker',
'sh',
'tabulate',
'arrow',
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
description='Manage a small OAR developpement cluster with docker.',
long_description=read('README.rst') + '\n\n' + read('CHANGES.rst'),
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
entry_points='''
[console_scripts]
oardocker=oardocker.cli:main
''',
)