forked from broadinstitute/python-cert_manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
68 lines (56 loc) · 2.13 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Install cert_manager."""
import io
import os
import sys
from setuptools import find_packages
from setuptools import setup
from setuptools.command.install import install
VERSION = "2.0.0"
def get_long_description():
"""Retrieve the long description from the README file."""
# Use io.open to support encoding on Python 2 and 3
fileh = io.open("README.md", "r", encoding="utf8")
desc = fileh.read()
fileh.close()
return desc
# This was a great idea!! https://github.com/levlaz/circleci.py/blob/master/setup.py
class VerifyVersionCommand(install):
"""Verify that the git tag matches our version."""
description = "verify that the git tag matches our version"
def run(self):
"""Check the CIRCLE_TAG environment variable against the recorded version."""
tag = os.getenv("CIRCLE_TAG")
if tag != VERSION:
info = "Git tag: {0} does not match the version of this app: {1}".format(tag, VERSION)
sys.exit(info)
setup(
name="cert_manager",
version=VERSION,
author="Andrew Teixeira",
author_email="teixeira@broadinstitute.org",
description="Python interface to the Sectigo Certificate Manager REST API",
include_package_data=True,
keywords=["sectigo", "comodo", "certificate"],
license="BSD",
long_description=get_long_description(),
long_description_content_type="text/markdown",
packages=find_packages(exclude=("tests")),
url="https://github.com/broadinstitute/python-cert_manager",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
install_requires=["requests <3"],
python_requires=">=2.7, <4",
setup_requires=["setuptools_scm"],
cmdclass={"verify": VerifyVersionCommand},
)