git-batch/setup.py

74 lines
2.3 KiB
Python
Raw Normal View History

2019-11-29 14:45:28 +01:00
#!/usr/bin/env python3
"""Setup script for the package."""
import io
import os
import re
from setuptools import find_packages
from setuptools import setup
PACKAGE_NAME = "gitbatch"
def get_property(prop, project):
current_dir = os.path.dirname(os.path.realpath(__file__))
result = re.search(
r'{}\s*=\s*[\'"]([^\'"]*)[\'"]'.format(prop),
open(os.path.join(current_dir, project, "__init__.py")).read())
return result.group(1)
def get_readme(filename="README.md"):
this = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(this, filename), encoding="utf-8") as f:
long_description = f.read()
return long_description
setup(
name=get_property("__project__", PACKAGE_NAME),
version=get_property("__version__", PACKAGE_NAME),
description="Clone single branch from all repositories listed in a file.",
2020-04-11 13:17:01 +02:00
keywords="git, batch, automation",
2019-11-29 14:45:28 +01:00
author=get_property("__author__", PACKAGE_NAME),
author_email=get_property("__email__", PACKAGE_NAME),
url=get_property("__url__", PACKAGE_NAME),
license=get_property("__license__", PACKAGE_NAME),
long_description=get_readme(),
long_description_content_type="text/markdown",
2020-04-11 13:17:01 +02:00
packages=find_packages(exclude=["*.test", "test", "test.*"]),
2019-11-29 14:45:28 +01:00
include_package_data=True,
zip_safe=False,
2020-04-11 13:17:01 +02:00
python_requires=">=3.5,<4",
2019-11-29 14:45:28 +01:00
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
2020-04-11 13:17:01 +02:00
"License :: OSI Approved :: MIT License",
2019-11-29 14:45:28 +01:00
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Operating System :: POSIX",
2020-04-11 13:17:01 +02:00
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
2020-11-12 21:13:26 +01:00
"Programming Language :: Python :: 3.9",
2019-11-29 14:45:28 +01:00
"Topic :: Utilities",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
],
install_requires=[
"gitpython",
2019-12-02 09:53:35 +01:00
"colorama",
"python-json-logger",
2019-11-29 14:45:28 +01:00
],
entry_points={
"console_scripts": [
"git-batch = gitbatch.__main__:main"
]
},
)