-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (31 loc) · 870 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
#!/usr/bin/env python3.6
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
required = [
'click>=6.7',
'delegator.py>=0.1.0'
]
setup(
name='ceph-export',
version='0.1.0',
license='MIT',
description='Simple app to export rbd images from a ceph pool, based on the last snapshot.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Markus Hubig',
author_email='mhubig@gmail.com',
url='https://github.com/mhubig/ceph-export',
py_modules=['export'],
install_requires=required,
setup_requires=['setuptools>=38.6.0'],
entry_points={
'console_scripts': [
'ceph-export=export:cli',
]
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.6'
]
)