-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 798 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 798 Bytes
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
# coding: utf-8
from setuptools import find_packages, setup
pkgname = "vdt.version"
setup(name=pkgname,
version="0.1.8",
description="Version Increment Tool for GIT",
author="Lars van de Kerkhof",
author_email="lars@devopsconsulting.nl",
maintainer="Lars van de Kerkhof",
maintainer_email="lars@devopsconsulting.nl",
url="https://github.com/devopsconsulting/vdt.version",
packages=find_packages(),
include_package_data=True,
namespace_packages=['vdt'],
zip_safe=True,
install_requires=[
"setuptools",
"straight.plugin>=1.4.0-post-1",
"vdt.versionplugin.default",
],
entry_points={
'console_scripts':[
'version = vdt.version.main:main'
]
},
)