forked from RyTheGuy355/MiniAFSDCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
58 lines (55 loc) · 1.66 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
[metadata]
name = mini_afsd
version = 1.2.1
author = Ryan Gottwald
maintainer = Donald Erb
maintainer_email = [email protected]
description = A program for controlling a miniturized additive friction stir deposition (AFSD) machine.
long_description = file: README.rst
long_description_content_type = text/x-rst
license_files =
LICENSE.txt
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Intended Audience :: Developers
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Physics
keywords =
AFSD
additive friction stir deposition
engineering
url = https://github.com/RyTheGuy355/MiniAFSDCode
project_urls =
Source Code = https://github.com/RyTheGuy355/MiniAFSDCode
Documentation = https://mini_afsd.readthedocs.io
[options]
packages = find:
include_package_data = True
python_requires = >=3.7
install_requires =
labjack-ljm
matplotlib>=3.4
pyserial
zip_safe = False
[options.packages.find]
include = mini_afsd, mini_afsd.*
[flake8]
max-line-length = 100
docstring-convention = numpy
exclude =
docs/*
ignore =
E731, # do not assign a lambda expression, use a def
W503, # line break before binary operator
W504, # line break after binary operator
D401 # first line should be in imperative mood; try rephrasing
per-file-ignores =
# F401: module imported but unused
# D205: 1 blank line required between summary line and description
__init__.py: F401, D205