-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (53 loc) · 1.81 KB
/
setup.py
File metadata and controls
62 lines (53 loc) · 1.81 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
import os
import imp
from setuptools import setup, find_packages
__author__ = "Kurt Rose and Mahmoud Hashemi"
__contact__ = "kurt@kurtrose.com"
__license__ = 'Apache License 2.0'
__url__ = 'https://github.com/SimpleLegal/pocket_protector'
CUR_PATH = os.path.abspath(os.path.dirname(__file__))
_version_mod_path = os.path.join(CUR_PATH, 'pocket_protector', '_version.py')
_version_mod = imp.load_source('_version', _version_mod_path)
__version__ = _version_mod.__version__
with open('README.md') as readme:
long_description = readme.read()
setup(
name="pocket-protector",
description="Handy secret management system with a convenient CLI and readable storage format.",
long_description=long_description,
long_description_content_type='text/markdown',
author=__author__,
author_email=__contact__,
url=__url__,
license=__license__,
platforms='any',
version=__version__,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points={'console_scripts': ['pprotect = pocket_protector.__main__:main',
'pocket_protector = pocket_protector.__main__:main']},
install_requires=['attrs',
'boltons',
'PyNaCl',
'ruamel.yaml',
'schema',
'face>=20.1.1']
)
"""
Release process:
* tox
* git commit (if applicable)
* Remove dev suffix from pocket_protector/_version.py version
* git commit -a -m "bump version for vX.Y.Z release"
* rm -rf dist
* python setup.py sdist bdist_wheel
* twine upload dist/*
* git tag -a vX.Y.Z -m "brief summary"
* write CHANGELOG
* git commit
* bump pocket_protector/_version.py version onto n+1 dev
* git commit
* git push
Versions are of the format YY.MINOR.MICRO, see calver.org for more details.
"""