Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
gitlab-ci: define PYTHONPATH explicitly to see if it helps
[simgrid.git] / docs / source / _ext / autodoxy / setup.py
1 from setuptools import setup, Extension
2
3 with open("README", "r") as fh:
4     long_description = fh.read()
5     
6 setup(
7     name="autodoxy",
8     version="0.0.1",
9     author="Martin Quinson",
10 #    author_email="author@example.com",
11     description="A bridge between the autodoc of Python and Doxygen of C/C++",
12     long_description=long_description,
13     long_description_content_type="text/plain",
14     url="https://framagit.org/simgrid/simgrid/docs/source/_ext/autodoxy",
15     packages=setuptools.find_packages(),
16     classifiers=[
17       "Programming Language :: Python :: 3",
18       "License :: OSI Approved :: MIT License",
19       "Operating System :: OS Independent",
20     ],
21     python_requires='>=3.6',
22 )