Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • nexus_reading_bug
  • readingByBlock
  • cdma-january
  • v3.7.6
  • cdma-3.7.5
  • cdma-3.7.4
  • cdma-3.7.3
  • trunk
  • cdma-3.7.2
  • cdma-3.7.1
  • cdma-3.7.0
  • cdma-3.6.4
  • cdma-3.6.3
  • cdma-3.6.2
  • cdma-3.6.1
  • cdma-3.6.0
  • cdma-3.5.1
  • cdma-3.4.5
  • cdma-3.4.4
  • cdma-3.4.3
  • cdma-3.4.2
22 results

pom.xml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    setup.py 760 B
    #!/usr/bin/env python3
    
    import setuptools
    
    with open("README.md", "r", encoding="utf-8") as fh:
        long_description = fh.read()
    
    setuptools.setup(
        name="nbUI", # Replace with your own username
        version="0.0.1",
        author="Hugo Chauvet",
        author_email="hugo.chauvet@protonmail.com",
        description="A set of ipywidgets UI for jupyter notebook",
        long_description=long_description,
        long_description_content_type="text/markdown",
        url="https://gitlab.com/discosoleil/nbui",
        packages=setuptools.find_packages(),
        classifiers=[
            "Programming Language :: Python :: 3",
            "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
            "Operating System :: OS Independent",
        ],
        python_requires='>=3.6',
    )