forked from oldarmyc/accord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 925 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
38
39
#!/usr/bin/env python
import setuptools
import accord
requirements = ['sh', 'pyyaml']
test_requirements = ['mock', 'flake8', 'nose']
setuptools.setup(
name='accord',
version=accord.__version__,
url='https://github.com/oldarmyc/accord',
license='Apache License, Version 2.0',
author='Dave Kludt',
author_email='[email protected]',
description=(
'Backup and restore Anaconda Enterprise 5'
),
zip_safe=False,
platforms='any',
install_requires=requirements,
extras_require={
'tests': test_requirements
},
entry_points={
'console_scripts': [
'accord=accord.process:main'
]
},
packages=['accord'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python'
]
)