Skip to content
Snippets Groups Projects
Select Git revision
  • d06d61204faa2dc025ca6ec2230e0fec643f447a
  • main default protected
2 results

setup.cfg

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    setup.cfg 1.13 KiB
    [metadata]
    name = my-awseome-app
    version = file: VERSION
    description = An example package for CI/CD working group
    long_description = file: README.md
    long_description_content_type = text/markdown
    url = https://git.astron.nl/templates/python-package
    license = Apache License 2.0
    classifiers =
        Development Status :: 3 - Alpha
        Environment :: Web Environment
        Intended Audience :: Developers
        Intended Audience :: Science/Research
        License :: OSI Approved :: Apache Software License
        Operating System :: OS Independent
        Programming Language :: Python
        Programming Language :: Python :: 3
        Programming Language :: Python :: 3 :: Only
        Programming Language :: Python :: 3.7
        Programming Language :: Python :: 3.8
        Programming Language :: Python :: 3.9
        Programming Language :: Python :: 3.10
        Topic :: Internet :: WWW/HTTP
        Topic :: Internet :: WWW/HTTP :: Dynamic Content
        Topic :: Scientific/Engineering
        Topic :: Scientific/Engineering :: Astronomy
    
    [options]
    include_package_data = true
    packages = find:
    python_requires = >=3.7
    install_requires =
        numpy
    
    [flake8]
    max-line-length = 88
    extend-ignore = E203