https://github.com/statycc/pymwp
Raw File
Tip revision: 0f004aa33b5531e935a524969924d231beb15572 authored by Neea Rusch on 08 March 2022, 03:10:52 UTC
changes to eval and choice representation (#78)
Tip revision: 0f004aa
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'
    ]
)
back to top