-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.38 KB
/
pyproject.toml
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
[project]
name = "cn2svg"
version = "1.0.2"
authors = [
{name = "Shawn Douglas", email = "[email protected]"},
]
description = "Standalone SVG exporter for Cadnano files."
keywords = ["dna", "origami", "cadnano"]
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 = [
'svglib',
'pysvg-py3 @ git+https://github.com/douglaslab/pysvg-py3',
'cadnano @ git+https://github.com/douglaslab/cadnano2.5.git'
]
[project.urls] # populates "Project links" on pypi.org page.
"Source" = "https://github.com/douglaslab/cn2svg"
"Bug Reports" = "https://github.com/douglaslab/cn2svg/issues"
[project.scripts]
# The following provides a command-line executable called `cn2svg`
# which executes the function `main` from this package when invoked.
cn2svg = "cn2svg:cn2svg.main"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["cn2svg"] # package names should match these glob patterns (["*"] by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)