25 lines
833 B
Python
25 lines
833 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='deevirt_schema',
|
|
version='0.1.34',
|
|
description='Deevirt Schema',
|
|
url='https://git.celeonet.fr/Deevirt/deevirt_schema.git',
|
|
author='Celeonet',
|
|
author_email='noc@celeonet.fr',
|
|
license='Apache 2.0',
|
|
packages=find_packages(),
|
|
install_require=['pydantic','pydanticxml'],
|
|
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',
|
|
],
|
|
)
|