forked from isotoma/isotoma.recipe.facts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (34 loc) · 1.07 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·37 lines (34 loc) · 1.07 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
from setuptools import setup, find_packages
version = '0.0.8.dev0'
setup(
name = 'isotoma.recipe.facts',
version = version,
description = "A recipe to provide facts about the context a buildout is running in",
long_description = open("README.rst").read() + "\n" + open("CHANGES.txt").read(),
classifiers = [
"Framework :: Buildout",
"Intended Audience :: System Administrators",
"Operating System :: POSIX",
"License :: OSI Approved :: Apache Software License",
],
keywords = "buildout facts",
author = "John Carr",
author_email = "john.carr@isotoma.com",
license="Apache Software License",
packages = find_packages(exclude=['ez_setup']),
package_data = {
'': ['README.rst', 'CHANGES.txt'],
},
namespace_packages = ['isotoma', 'isotoma.recipe'],
include_package_data = True,
zip_safe = False,
install_requires = [
'setuptools',
'zc.buildout',
],
entry_points = {
"zc.buildout": [
"default = isotoma.recipe.facts:Facts",
],
}
)