-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (42 loc) · 1.31 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
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
readme = ''
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, 'README.rst')
if os.path.exists(readme_path):
with open(readme_path, 'rb') as stream:
readme = stream.read().decode('utf8')
setup(
long_description=readme,
name='pytedjmi',
version='0.4.3',
description='Test Django migrations through Pytest.',
python_requires='==3.*,>=3.7.0',
author='Kit La Touche',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha', 'Framework :: Django',
'Framework :: Pytest', 'Intended Audience :: Developers',
'Topic :: Software Development :: Testing'
],
entry_points={'pytest11': ['pytedjmi = pytedjmi.core']},
packages=['pytedjmi', 'tests.migrations'],
package_data={},
install_requires=[
'django>=3.0.0', 'pytest>=5.4.3',
'pytest-django>=3.9.0'
],
extras_require={
'dev': [
'black==19.10.0', 'coverage', 'flake8', 'isort', 'pytest-cov',
'sphinx', 'sphinx-rtd-theme', 'tox'
]
},
)