-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
executable file
·47 lines (42 loc) · 1.27 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
43
44
45
46
47
"""Setuptools entrypoint."""
import codecs
import os
from setuptools import setup
from s3keyring import __version__, __author__
dirname = os.path.dirname(__file__)
long_description = (
codecs.open(os.path.join(dirname, "README.rst"), encoding="utf-8").read() + "\n" + # noqa
codecs.open(os.path.join(dirname, "AUTHORS.rst"), encoding="utf-8").read() + "\n" + # noqa
codecs.open(os.path.join(dirname, "CHANGES.rst"), encoding="utf-8").read()
)
setup(
name="s3keyring",
include_package_data=True,
package_data={"s3keyring": ["s3keyring.ini"]},
packages=["s3keyring"],
version=__version__,
license="MIT",
author=__author__,
author_email="[email protected]",
url="http://github.com/findhotel/s3keyring",
description="S3 backend for Python's keyring module",
long_description=long_description,
install_requires=[
"click>=7.0,<8.0",
# pycparser 2.15 is broken
"pycparser==2.14",
"keyring==17.1.1",
"boto3facade==0.5.9",
"awscli",
],
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3"
],
zip_safe=False,
entry_points={
"console_scripts": [
"s3keyring = s3keyring.cli:main",
]
}
)