-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
68 lines (56 loc) · 2.16 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
import os
import sys
from setuptools import find_packages, setup
from setuptools.command.install import install
ROOT = os.path.abspath(os.path.dirname(__file__))
version = __import__("sort_requirements").__version__
with open("README.md", "r") as f:
long_description = f.read()
class VerifyVersionCommand(install):
"""Custom command to verify that the git tag matches our version"""
description = "verify that the git tag matches our version"
def run(self):
tag = os.getenv("CIRCLE_TAG")
if tag != "v{}".format(version):
info = "Git tag: {0} does not match the version of this app: {1}".format(
tag, version
)
sys.exit(info)
setup(
name="sort_requirements",
version=version,
url="https://github.com/rehandalal/sort-requirements",
license="Mozilla Public License Version 2.0",
author="Rehan Dalal",
author_email="[email protected]",
description="A simple script to sort python dependencies in requirement text files.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
zip_safe=False,
platforms="any",
install_requires=[],
py_modules=["sort_requirements"],
entry_points={
"console_scripts": ["sort-requirements = sort_requirements.script:main"]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Build Tools",
],
cmdclass={"verify": VerifyVersionCommand},
)