Integration de setuptools

This commit is contained in:
Mickael BOURNEUF 2024-10-22 16:19:01 +02:00
parent 1b5357f090
commit 50bd1fb498
9 changed files with 24 additions and 0 deletions

View File

24
setup.py Normal file
View File

@ -0,0 +1,24 @@
from setuptools import find_packages, setup
setup(
name='deevirt_schema',
version='0.1.0',
description='Deevirt Schema',
url='https://git.celeonet.fr/Deevirt/deevirt_schema.git',
author='Celeonet',
author_email='noc@celeonet.fr',
license='Apache 2.0',
packages=packages=find_packages(),
install_require=[],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)