-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
78 lines (73 loc) · 2.04 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='Py-YAML-Fixtures',
version='0.6.1',
description='Load Django and SQLAlchemy database fixtures '
'from Jinja-templated YAML files',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/briancappello/py-yaml-fixtures',
author='Brian Cappello',
license='MIT',
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(exclude=[
'django_test_app',
'docs',
'tests',
'unchained_test_app',
]),
install_requires=[
'faker>=1.0.7',
'jinja2>=2.10.1',
'networkx>=2.3',
'python-dateutil>=2.8.0',
'PyYAML>=5.1',
],
extras_require={
'dev': [
'django>=2.1',
'flask>=1.0',
'pytest',
'sqlalchemy>=1.0',
],
'django': [
'django>=2.0',
],
'docs': [
'django>=2.1',
'flask>=1.0',
'm2r',
'sphinx',
'sphinx-autobuild',
'sphinx-rtd-theme',
'sqlalchemy>=1.0',
],
'flask-sqlalchemy': [
'click>=6.7',
'flask>=1.0',
'flask-sqlalchemy>=2.2',
],
'flask-unchained': [
'flask-migrate>=2.2.1',
'flask-unchained>=0.8.0',
'flask-sqlalchemy-unchained>=0.7.3',
'sqlalchemy-unchained>=0.7.6',
],
'sqlalchemy': [
'sqlalchemy>=1.0',
],
},
python_requires='>=3.5',
include_package_data=True,
zip_safe=False,
)