-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
37 lines (29 loc) · 948 Bytes
/
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
# version is one source from __init__
[metadata]
name = basic-pid
version = attr: basicpid.__version__
author = Mike Knerr
#author_email = name@domain.com
description = Standard PID Controller For Discrete Time Regulators
long_description = file: README.md
#long_description = file: README.rst, CHANGELOG.rst, LICENSE.rst
# pypi index project page needs this vers of homepage
home_page = https://github.com/mkner/basic-pid
readme = README.md
keywords = PID, controllers, regulators, discrete time systems, mobile robotics, robotics
#keywords = python, packages
license = BSD
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: BSD License
Operating System :: OS Independent
[options]
packages = find:
#install_requires =
# robo-base >= 0.1.4
# somepackage <= 0.4
#ok is module export name
# that can be different from package distro name
[options.packages.find]
include = basicpid*
#