-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (27 loc) · 768 Bytes
/
Copy pathpyproject.toml
File metadata and controls
27 lines (27 loc) · 768 Bytes
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
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tweezepy"
version = "1.2.7"
authors = [
{ name="Ian L Morgan", email="ian.morgan@nih.gov" },
]
description = "Tweezepy"
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"autograd",
"numpy>=1.15",
"scipy"
]
[project.urls]
Documentation = "https://tweezepy.readthedocs.io/"
Repository = "https://github.com/ianlmorgan/tweezepy"
Issues = "https://github.com/ianlmorgan/tweezepy/issues"
Changelog = "https://github.com/ianlmorgan/tweezepy/CHANGELOG.md"