-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
42 lines (40 loc) · 1.21 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
42
[build-system]
requires = [
"wheel>=0.29.0",
"setuptools>=42.0.0",
"numpy",
"Cython",
"mako"
]
[project]
name = "cyarray"
dynamic = ["version"]
readme = "README.rst"
license = {file = "LICENSE.txt"}
dependencies = ['numpy']
description = "A fast, typed, resizable, Cython array."
authors = [
{name = "Cyarray Developers", email = "pysph-dev@googlegroups.com"}
]
keywords = ["Cython", "array", "resizable"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
]
[project.optional-dependencies]
docs = ["sphinx"]
tests = ["pytest", "pytest-benchmark[histogram]"]
dev = ["sphinx", "pytest", "pytest-benchmark[histogram]", "cython"]