forked from inducer/pycparserext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 925 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
# -*- coding: latin1 -*-
from setuptools import setup
setup(name="pycparserext",
version="2021.1",
description="Extensions for pycparser",
long_description=open("README.rst", "r").read(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Utilities",
],
python_requires="~=3.8",
install_requires=[
"ply>=3.4",
"pycparser~=2.21",
],
author="Andreas Kloeckner",
url="http://pypi.python.org/pypi/pycparserext",
author_email="[email protected]",
license="MIT",
packages=["pycparserext"])