-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 843 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 843 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
29
30
# coding: utf-8
from setuptools import find_packages, setup
pkgname = "vdt.versionplugin.debianize"
setup(
name=pkgname,
version="1.0.7",
description="Version Increment Plugin that builds with debianize",
author="Lars van de Kerkhof",
author_email="lars@permanentmarkers.nl",
maintainer="Lars van de Kerkhof",
maintainer_email="lars@permanentmarkers.nl",
packages=find_packages(),
include_package_data=True,
namespace_packages=["vdt", "vdt.versionplugin"],
zip_safe=True,
install_requires=[
"setuptools",
"vdt.version>=0.1.4",
"vdt.versionplugin.default",
"vdt.versionplugin.wheel>=0.0.7",
"pip==10.0.1",
],
entry_points={
"console_scripts": [
"vdt.fpmeditor = vdt.versionplugin.debianize.fpmeditor:main",
]
},
)