GITLAB iLM - Institut Lumière Matière

Skip to content
Snippets Groups Projects
setup.py 661 B
Newer Older
  • Learn to ignore specific revisions
  • Aymeric Allemand's avatar
    Aymeric Allemand committed
    from setuptools import setup, find_packages
    
    with open("README.md", "r") as f:
        long_description = f.read()
    
    setup(
    
    Aymeric Allemand's avatar
    Aymeric Allemand committed
        name='control_nidaq_config',
    
    Aymeric Allemand's avatar
    Aymeric Allemand committed
        version='N/A',
        author='Aymeric Allemand',
        author_email='aymeric.allemand@univ-lyon1.fr',
    
    Aymeric Allemand's avatar
    Aymeric Allemand committed
        url='https://cameleon.univ-lyon1.fr/aymeric.allemand/control_nidaq_config',
        description='Configuration for the control_daq module',
    
    Aymeric Allemand's avatar
    Aymeric Allemand committed
        long_description=long_description,
        long_description_content_type="text/markdown",
        packages=find_packages(),
        classifiers=[
            "Programming Language :: Python :: 3",
            "Operating System :: OS Independent",
        ],
        python_requires='>=3.6'
    )