|
30 | 30 | CFLAGS = os.environ['CFLAGS'] = '-DCYTHON_TRACE=1 -DCYTHON_USE_SYS_MONITORING=0' |
31 | 31 | LFLAGS = os.environ['LFLAGS'] = '' |
32 | 32 | else: |
33 | | - CFLAGS = '-DCYTHON_USE_SYS_MONITORING=0' |
| 33 | + CFLAGS = '' |
34 | 34 | LFLAGS = '' |
35 | 35 |
|
36 | 36 | allow_extensions = True |
@@ -117,81 +117,16 @@ def read(*names, **kwargs): |
117 | 117 |
|
118 | 118 |
|
119 | 119 | setup( |
120 | | - name='hunter', |
121 | | - use_scm_version={ |
122 | | - 'local_scheme': 'dirty-tag', |
123 | | - 'write_to': 'src/hunter/_version.py', |
124 | | - 'fallback_version': '3.8.0', |
125 | | - }, |
126 | | - license='BSD-2-Clause', |
127 | | - description='Hunter is a flexible code tracing toolkit.', |
128 | 120 | long_description='{}\n{}'.format( |
129 | 121 | re.compile('^.. start-badges.*^.. end-badges', re.M | re.S).sub('', read('README.rst')), |
130 | 122 | re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst')), |
131 | 123 | ), |
132 | 124 | long_description_content_type='text/x-rst', |
133 | | - author='Ionel Cristian Mărieș', |
134 | | - |
135 | | - url='https://github.com/ionelmc/python-hunter', |
136 | 125 | packages=find_namespace_packages('src'), |
137 | 126 | package_dir={'': 'src'}, |
138 | 127 | py_modules=[path.stem for path in Path('src').glob('*.py')], |
139 | 128 | include_package_data=True, |
140 | 129 | zip_safe=False, |
141 | | - classifiers=[ |
142 | | - # complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers |
143 | | - 'Development Status :: 5 - Production/Stable', |
144 | | - 'Intended Audience :: Developers', |
145 | | - 'Operating System :: Unix', |
146 | | - 'Operating System :: POSIX', |
147 | | - 'Operating System :: Microsoft :: Windows', |
148 | | - 'Programming Language :: Python', |
149 | | - 'Programming Language :: Python :: 3', |
150 | | - 'Programming Language :: Python :: 3 :: Only', |
151 | | - 'Programming Language :: Python :: 3.9', |
152 | | - 'Programming Language :: Python :: 3.10', |
153 | | - 'Programming Language :: Python :: 3.11', |
154 | | - 'Programming Language :: Python :: 3.12', |
155 | | - 'Programming Language :: Python :: 3.13', |
156 | | - 'Programming Language :: Python :: Implementation :: CPython', |
157 | | - 'Programming Language :: Python :: Implementation :: PyPy', |
158 | | - 'Topic :: Utilities', |
159 | | - 'Topic :: Software Development :: Debuggers', |
160 | | - ], |
161 | | - project_urls={ |
162 | | - 'Documentation': 'https://python-hunter.readthedocs.io/', |
163 | | - 'Changelog': 'https://python-hunter.readthedocs.io/en/latest/changelog.html', |
164 | | - 'Issue Tracker': 'https://github.com/ionelmc/python-hunter/issues', |
165 | | - }, |
166 | | - keywords=[ |
167 | | - 'trace', |
168 | | - 'tracer', |
169 | | - 'settrace', |
170 | | - 'debugger', |
171 | | - 'debugging', |
172 | | - 'code', |
173 | | - 'source', |
174 | | - ], |
175 | | - python_requires='>=3.9', |
176 | | - install_requires=[], |
177 | | - extras_require={ |
178 | | - ':platform_system != "Windows"': ['manhole >= 1.5'], |
179 | | - }, |
180 | | - setup_requires=( |
181 | | - [ |
182 | | - 'setuptools_scm>=3.3.1,!=4.0.0', |
183 | | - 'cython', |
184 | | - ] |
185 | | - if Cython |
186 | | - else [ |
187 | | - 'setuptools_scm>=3.3.1,!=4.0.0', |
188 | | - ] |
189 | | - ), |
190 | | - entry_points={ |
191 | | - 'console_scripts': [ |
192 | | - 'hunter-trace = hunter.remote:main', |
193 | | - ] |
194 | | - }, |
195 | 130 | cmdclass={ |
196 | 131 | 'build': BuildWithPTH, |
197 | 132 | 'easy_install': EasyInstallWithPTH, |
|
0 commit comments