forked from ammaritiz/pulp_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (26 loc) · 845 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (26 loc) · 845 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
#!/usr/bin/env python2
from setuptools import find_packages, setup
setup(
name='pulp_python_plugins',
version='2.1a1',
packages=find_packages(exclude=['test', 'test.*']),
url='http://www.pulpproject.org',
license='GPLv2+',
author='Pulp Team',
description='plugins for python support in pulp',
entry_points={
'pulp.importers': [
'importer = pulp_python.plugins.importers.importer:entry_point',
],
'pulp.distributors': [
'distributor = pulp_python.plugins.distributors.web:entry_point'
],
'pulp.server.db.migrations': [
'pulp_python = pulp_python.plugins.migrations',
],
'pulp.unit_models': [
'python_package = pulp_python.plugins.models:Package',
],
}
)