-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
35 lines (31 loc) · 894 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
[metadata]
name = pyvenus
description = A Python interface to the Venus environment, used to program Hamilton liquid handlers
long_description_content_type = text/markdown
long_description = file: README.md
url = https://github.com/sniprbiome/pyvenus
project_urls =
Bug Tracker = https://github.com/sniprbiome/pyvenus/issues
Changelog = https://github.com/sniprbiome/pyvenus/releases/
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
[options]
package_dir =
= src
packages = find:
python_requires = >=3.8
include_package_data=True
install_requires =
pandas
jinja2
pyodbc
openpyxl
[options.package_data]
* = *.*
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
pyvenus = pyvenus.scripts:pyvenus_main
pyvenus-setup = pyvenus.scripts:pyvenus_setup