Skip to content
Snippets Groups Projects
setup.py 870 B
Newer Older
  • Learn to ignore specific revisions
  • import setuptools
    
    with open("README.md", "r") as fh:
        description = fh.read()
    
    setuptools.setup(
        name="rootable",
        version="0.0.1",
        author="Johannes Bilk",
        author_email="johannes.bilk@physik.uni-giessen.de",
        packages=["rootable"],
        description="A simple packages for extracting PXD data from root files",
        long_description=description,
        long_description_content_type="text/markdown",
        url="https://github.com/gituser/test-tackage",
        license='MIT',
        python_requires='>=3.10',
        install_requires=[],
        keywords=['python', 'pxd', 'root'],
        classifiers= [
    
    johannes bilk's avatar
    johannes bilk committed
            "Development Status :: 1.0",
            "Environment :: Console",
    
            "Intended Audience :: Researchers",
            "Programming Language :: Python :: 3",
            "Operating System :: MacOS :: MacOS X",
            "Operating System :: Microsoft :: Windows",
        ]
    )