This repository has been archived by the owner on Nov 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (55 loc) · 2.17 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python
'''
Created on 17/feb/2014
@author: oggei
'''
# require libpq-dev, libyaml-dev
from setuptools import setup, find_packages
setup(
name='ieo-enc',
version='1.0',
description='IEO - External Node Classifier',
author='Alessandro Ogier',
author_email='[email protected]',
url='https://devel.ieo.eu/',
download_url='https://devel.ieo.eu/',
classifiers=['Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Intended Audience :: Developers',
'Environment :: Console',
],
platforms=['Any'],
scripts=[],
provides=['ieo_enc',
],
data_files=[
('etc/ieo_enc', ['.placeholder']),
],
packages=find_packages(),
include_package_data=True,
install_requires=['PyYAML==3.10',
'SQLAlchemy==0.9.2',
'psycopg2==2.5.2',
'stevedore==0.14.1',
],
entry_points={
'console_scripts': [
'stub = enc:main',
],
'eu.ieo.puppet.classes': [
'ieo::classes::calendar::client = enc.plugins.data.calendars:CalendarPlugin'
],
'eu.ieo.puppet.facts': [
'ieo::facts::trac = enc.plugins.facts.trac:TracFactsPlugin',
'puppet::dashboard = enc.plugins.facts.dashboard:DashboardFactsPlugin',
'foreman::enc = enc.plugins.facts.foreman:FactsPlugin',
],
},
zip_safe=False,
)