-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 885 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
from setuptools import setup, find_packages
requirements = [
'pytest',
'astor',
]
with open('README.md', encoding='utf-8') as f:
readme = f.read()
setup(
name='pytest-ast-transformer',
version='1.0.3',
packages=find_packages(exclude=['examples', 'tests']),
entry_points={
"pytest11": ["pytest_ast_transformer = pytest_ast_transformer.plugin"],
},
install_requires=requirements,
long_description=readme,
author='okorolev',
author_email='johnnyprobel@gmail.com',
url='https://github.com/okorolev/pytest-ast-transformer',
keywords=['pytest', 'ast', 'transformer', 'refactoring', 'testing', 'debug'],
classifiers=[
'Framework :: Pytest',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
],
tests_require=['pytest-mock'],
setup_requires=['pytest-runner'],
)