forked from django-stars/pytest-yapf
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1009 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
33
34
35
36
37
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup this package."""
from setuptools import find_packages, setup
setup(
use_scm_version=True,
zip_safe=False,
# Package modules and data
packages=find_packages('src'),
package_dir={'': 'src'},
# Entries
entry_points={
'pytest11': ('yapf = pytest_yapf3', ),
},
# Requires
python_requires='>=3.6',
setup_requires=[
'pytest-runner',
'setuptools-scm',
'setuptools-pipfile',
],
use_pipfile={
'path': 'Pipfile',
'extras': True,
},
# PyPI Metadata
keywords=['pytest', 'yapf'],
platforms=['any'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Pytest',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
],
)