Integration de setuptools
This commit is contained in:
parent
1b5357f090
commit
50bd1fb498
|
@ -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',
|
||||||
|
],
|
||||||
|
)
|
Loading…
Reference in New Issue