-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
40 lines (36 loc) · 1.27 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
import setuptools
from pkg_resources import parse_requirements
with open("requirements.txt") as f:
requirements = [str(r) for r in parse_requirements(f)]
with open("README.rst", "r") as fh:
long_description = fh.read()
keywords = ['bump', 'version', 'appVersion', 'versioning', 'helm', 'charts', 'setup.py', 'promote']
setuptools.setup(
name="pybump",
version="1.12.6",
author="Arie Lev",
author_email="levinsonarie@gmail.com",
description="Python version bumper",
keywords=keywords,
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/ArieLevs/PyBump",
license='Apache License 2.0',
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"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",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'pybump = src.pybump:main'
],
},
)