X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8998b430cbb4382aa4bee4f25dcb58e6bdfd7bbc..bd02d3682100837c80468bb5b24d06cafa64cd30:/docs/source/_ext/autodoxy/setup.py diff --git a/docs/source/_ext/autodoxy/setup.py b/docs/source/_ext/autodoxy/setup.py deleted file mode 100644 index 63f517109e..0000000000 --- a/docs/source/_ext/autodoxy/setup.py +++ /dev/null @@ -1,22 +0,0 @@ -from setuptools import setup, Extension - -with open("README", "r") as fh: - long_description = fh.read() - -setup( - name="autodoxy", - version="0.0.1", - author="Martin Quinson", -# author_email="author@example.com", - description="A bridge between the autodoc of Python and Doxygen of C/C++", - long_description=long_description, - long_description_content_type="text/plain", - url="https://framagit.org/simgrid/simgrid/docs/source/_ext/autodoxy", - packages=setuptools.find_packages(), - classifiers=[ - "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", - "Operating System :: OS Independent", - ], - python_requires='>=3.6', -)