Skip to content
Snippets Groups Projects
setup.py 842 B
Newer Older
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= [
        "Development Status :: 3 - Alpha",
        "Intended Audience :: Researchers",
        "Programming Language :: Python :: 3",
        "Operating System :: MacOS :: MacOS X",
        "Operating System :: Microsoft :: Windows",
    ]
)