-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·54 lines (47 loc) · 1.54 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from glob import glob
from os import path
from setuptools import find_packages
from setuptools import setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as readme_file:
long_description = readme_file.read()
setup(
name='pytest-cython',
version='0.3.1',
description='A plugin for testing Cython extension modules',
long_description=long_description,
long_description_content_type='text/markdown',
author='Logan Page',
author_email='[email protected]',
license='MIT',
url='https://github.com/lgpage/pytest-cython',
packages=find_packages('src'),
package_dir={'': 'src'},
py_modules=[path.splitext(path.basename(p))[0] for p in glob('src/*.py')],
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
],
keywords=[
'pytest', 'py.test', 'cython', 'doctest',
],
install_requires=[
'pytest>=8',
],
entry_points={
'pytest11': [
'pytest_cython = pytest_cython.plugin',
],
},
)