-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.cfg
83 lines (79 loc) · 1.91 KB
/
setup.cfg
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
79
80
81
82
83
[metadata]
name = goo
version = 1.1.0
description = Goo is a package to simulate 3D cells, tissues and developing embryos in Blender.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/smegason/Goo/
author = Sean Megason, Antoine A. Ruzette
author_email = [email protected]
license = BSD-2-Clause
license_files = LICENSE
classifiers =
Framework :: Pytest
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
project_urls =
Documentation = https://smegason.github.io/Goo/docs/
GitHub Project = https://github.com/smegason/Goo
Issue Tracker = https://github.com/smegason/Goo/issues
[options]
packages = find:
python_requires = >=3.7
install_requires =
numpy
bpy
scipy
bpy-fake-module
[options.extras_require]
dev =
black==20.8b1
bump2version==1.0.1
flake8==3.9.2
flake8-implicit-str-concat==0.2.0
flake8-print==4.0.0
isort==5.9.1
pre-commit==2.13.0
pytest
yamllint==1.26.1
pytest
pytest-cov
lint =
black==20.8b1
flake8==3.9.2
flake8-implicit-str-concat==0.2.0
flake8-print==4.0.0
isort==5.9.1
yamllint==1.26.1
test =
pytest
pytest-cov
[flake8]
max-line-length = 90
extend-ignore =
E203,
W503,
E731,
W291,
W292,
W293,
W605,
F401,
F403,
F405,
E999
[isort]
lines_after_imports = 2
multi_line_output = 3
line_length = 90
use_parentheses = True
combine_as_imports = True
include_trailing_comma = True
known_tests = tests
sections = STDLIB,THIRDPARTY,FIRSTPARTY,TESTS,LOCALFOLDER