-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
44 lines (41 loc) · 1.32 KB
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
[project]
name = "pyOrigamiBreak"
version = "1.0.1"
authors = [
{name = "Tural Aksel", email = "turalaksel@gmail.com"},
{name = "Shawn Douglas", email = "shawn.douglas@ucsf.edu"},
]
description = "Python tool for auto-breaking DNA origami staples"
keywords = ["dna", "origami"]
readme = "README.md"
license = {file = "LICENSE.txt"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
'numpy',
'pandas',
'pyyaml',
'openpyxl',
'matplotlib',
'svgutils',
'fastprogress',
'cadnano @ git+https://github.com/douglaslab/cadnano2.5.git',
'cn2svg @ git+https://github.com/douglaslab/cn2svg.git'
]
[project.urls] # populates "Project links" on pypi.org page.
"Source" = "https://github.com/douglaslab/pyOrigamiBreak"
"Bug Reports" = "https://github.com/douglaslab/pyOrigamiBreak/issues"
[project.scripts]
# The following provides a command-line executable called `autobreak`
# which executes the function `main` from this package when invoked.
autobreak = "autobreak:autobreak.main"
exportoligos = "autobreak:exportoligos.main"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"