forked from ATIX-AG/pulp-2to3-migration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·40 lines (37 loc) · 1.39 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
#!/usr/bin/env python3
from setuptools import find_packages, setup
with open("requirements.txt") as requirements:
requirements = requirements.readlines()
setup(
name='pulp-2to3-migration',
version='0.9.0.dev',
description='Pulp 2 to Pulp 3 migration tool',
license='GPLv2+',
author='Pulp Team',
author_email='pulp-list@redhat.com',
url='http://www.pulpproject.org',
python_requires='>=3.6',
install_requires=requirements,
include_package_data=True,
packages=find_packages(exclude=['tests', 'tests.*']),
classifiers=(
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: POSIX :: Linux',
'Framework :: Django',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
),
entry_points={
'pulpcore.plugin': [
'pulp_2to3_migration = pulp_2to3_migration:default_app_config',
],
'migrators': [
'iso = pulp_2to3_migration.app.plugin.iso.migrator:IsoMigrator',
'docker = pulp_2to3_migration.app.plugin.docker.migrator:DockerMigrator',
'deb = pulp_2to3_migration.app.plugin.deb.migrator:DebMigrator',
'rpm = pulp_2to3_migration.app.plugin.rpm.migrator:RpmMigrator'
]
}
)