-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (46 loc) · 1.88 KB
/
setup.py
File metadata and controls
56 lines (46 loc) · 1.88 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
# setup(
# name='python-pypi-version-check',
# description='Pre-commit hooks for terraform_docs_replace',
# url='https://github.com/opencepk/opencepk-lib-python-common',
# version_format='{tag}+{gitsha}',
# author='Contributors',
# classifiers=[
# "Programming Language :: Python",
# "Programming Language :: Python :: 3",
# "Programming Language :: Python :: 3 :: Only",
# "Programming Language :: Python :: 3.6",
# "Programming Language :: Python :: 3.7",
# "Programming Language :: Python :: 3.8",
# "Programming Language :: Python :: 3.9",
# "Programming Language :: Python :: 3.10",
# "Programming Language :: Python :: 3.11",
# "Programming Language :: Python :: 3.12",
# "Development Status :: 4 - Beta",
# "Intended Audience :: Developers",
# "Natural Language :: English",
# "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
# "Topic :: File Formats :: JSON",
# "Topic :: Software Development :: Pre-processors",
# "Topic :: Software Development :: Version Control :: Git",
# "Topic :: Text Processing",
# "Topic :: Text Processing :: Filters",
# "Topic :: Text Processing :: General",
# "Topic :: Utilities"
# ],
# packages=find_packages(exclude=('tests*', 'testing*')),
# install_requires=[
# 'setuptools-git-version',
# ],
# entry_points={
# 'console_scripts': [
# 'python-pypi-version-check = hooks.pypi_bumpversion_check.main:main',
# 'python-pypi-version-check-test = hooks.pypi_bumpversion_check.main:main'
# ],
# },
# )
# python-pypi-version-check /Users/hamed/Desktop/tucows-code/find-and-replace-strings/pyproject.toml
# This version is already published. Please bump the version in pyproject.toml.
setup()