-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (50 loc) · 1.26 KB
/
setup.py
File metadata and controls
64 lines (50 loc) · 1.26 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
55
56
57
58
59
60
61
62
63
64
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
version = '0.1.4'
setup(
name = 'secretcli',
version = version,
packages=find_packages(),
description = '',
long_description=long_description,
python_requires='>=3',
author = 'Robert Hafner',
author_email = 'tedivm@tedivm.com',
url = 'https://github.com/tedivm/secretcli',
download_url = "https://github.com/tedivm/secretcli/archive/v%s.tar.gz" % (version),
keywords = '',
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 3',
'Environment :: Console',
],
install_requires=[
'boto3>=1.9,<2.0',
'click>=6.0,<8.0',
'requests',
'pyyaml',
'urllib3<1.24'
],
extras_require={
'dev': [
'pypandoc',
'twine',
'wheel'
],
},
entry_points={
'console_scripts': [
'secretcli=secretcli.secretcli:cli',
],
},
)