-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.19 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
import os
import setuptools
def get_readme_content():
with open("README.md", "r") as f:
return f.read()
def get_package_version():
locals = {}
with open(os.path.join("skrm", "version.py")) as fd:
exec(fd.read(), None, locals)
return locals["__version__"]
setuptools.setup(
name="skrm",
version=get_package_version(),
author="Matthieu Poncin",
author_email="poncin.matthieu@gmail.com",
description="Simple keyring manager - Allows you to store keys associated to tags into an encrypted file, using GPG.",
long_description=get_readme_content(),
long_description_content_type="text/markdown",
url="https://github.com/PoncinMatthieu/skrm",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Security :: Cryptography"
],
packages=setuptools.find_packages(include=["skrm", "skrm.*"]),
entry_points={
'console_scripts': [
'skrm = skrm.__main__:keyring_manager.run'
],
},
test_suite="tests"
)