|
88 | 88 |
|
89 | 89 |
|
90 | 90 | setup( |
91 | | - name="dss_python_backend", |
92 | | - description="Low-level Python bindings and native libs for DSS-Python. Not intended for direct usage, see DSS-Python instead.", |
93 | | - long_description=long_description, |
94 | | - long_description_content_type='text/markdown', |
95 | | - author="Paulo Meira", |
96 | | - author_email="pmeira@ieee.org", |
97 | 91 | version=package_version, |
98 | | - license="BSD", |
99 | 92 | packages=['dss_python_backend'], |
100 | | - setup_requires=["cffi>=1.11.2"], |
| 93 | + setup_requires=["cffi>=2.0.0"], |
101 | 94 | cffi_modules= [ |
102 | 95 | "dss_build.py:ffi_builder_dss", |
103 | 96 | 'dss_build.py:ffi_builder_GenUserModel_altdss', |
|
111 | 104 | ], |
112 | 105 | ext_modules=[dss_build.fastdss_extension], |
113 | 106 | ext_package="dss_python_backend", |
114 | | - install_requires=["cffi>=1.11.2"], |
115 | 107 | # tests_require=["pytest"], |
116 | 108 | zip_safe=False, |
117 | | - classifiers=[ |
118 | | - 'Intended Audience :: Science/Research', |
119 | | - 'Intended Audience :: Education', |
120 | | - |
121 | | - 'Programming Language :: Python :: 3.7', |
122 | | - 'Programming Language :: Python :: 3.8', |
123 | | - 'Programming Language :: Python :: 3.9', |
124 | | - 'Programming Language :: Python :: 3.10', |
125 | | - 'Programming Language :: Python :: 3.11', |
126 | | - 'Programming Language :: Python :: 3.12', |
127 | | - 'Programming Language :: Python :: Implementation :: CPython', |
128 | | - 'Programming Language :: Python :: Implementation :: PyPy', |
129 | | - 'Development Status :: 5 - Production/Stable', |
130 | | - 'Topic :: Scientific/Engineering', |
131 | | - 'License :: OSI Approved :: BSD License' |
132 | | - ], |
133 | 109 | **extra_args |
134 | 110 | ) |
135 | 111 |
|
0 commit comments