https://github.com/statycc/pymwp
Raw File
Tip revision: 9e892966da0dfeeea9d6af0821e1277127b81907 authored by caubert on 11 February 2022, 15:34:50 UTC
Commenting and improving the gcd examples.
Tip revision: 9e89296
setup.py
import setuptools
import os

here = os.path.abspath(os.path.dirname(__file__))

with open("README.md", "r", encoding="utf-8") as fh:
    long_description = fh.read()

with open(os.path.join(here, "pymwp", "version.py")) as fh:
    exec(fh.read())

setuptools.setup(
    name="pymwp",
    version=__version__,
    author="Clément Aubert, Thomas Rubiano, Neea Rusch, Thomas Seiller",
    author_email="nrusch@augusta.edu",
    packages=["pymwp"],
    entry_points={
        "console_scripts": ["pymwp = pymwp.__main__:main"],
    },
    description="Implementation of MWP analysis on C code in Python",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/statycc/pymwp",
    project_urls={
        "Bug Tracker": "https://github.com/statycc/pymwp/issues",
        "Documentation": "https://statycc.github.io/pymwp/",
    },
    package_data={"": ["LICENSE"], },
    include_package_data=True,
    classifiers=[
        "Natural Language :: English",
        "Intended Audience :: Science/Research",
        "Development Status :: 3 - Alpha",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Operating System :: OS Independent",
        "Environment :: Console",
        "Typing :: Typed",
        "Topic :: Scientific/Engineering",
        "Topic :: Software Development",
    ],
    python_requires=">=3.7",
    install_requires=[
        'pycparser',
        'progressbar2'
    ]
)
back to top