forked from devopsconsulting/vdt.recipe.version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (42 loc) · 1.36 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
41
42
43
44
45
46
47
from setuptools import setup, find_packages
__version__ = "0.0.1"
description = "A buildout recipe to use vdt.version"
setup(
name='vdt.recipe.version',
version=__version__,
description=description,
long_description=description,
classifiers=[
"Framework :: Buildout",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='',
author='Martijn Jacobs',
author_email='[email protected]',
url='https://github.com/devopsconsulting/vdt.recipe.version',
license='',
# include all packages in the egg, except the test package.
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
# for avoiding conflict have one namespace for all apc related eggs.
namespace_packages=['vdt', 'vdt.recipe'],
# include non python files
include_package_data=True,
zip_safe=False,
# specify dependencies
install_requires=[
'setuptools',
'zc.buildout',
],
# mark test target to require extras.
extras_require={
'test': [
]
},
# generate scripts
entry_points={
'console_scripts': ['vdt-build = vdt.recipe.version.build:main'], # noqs
'zc.buildout': ['default = vdt.recipe.version.config:CreateConfig']
},
)