pyproject.toml 1.19 KB
Newer Older
maming's avatar
maming committed
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
[build-system]
requires = [
  'setuptools',
  'setuptools-scm',
  'cython',
  'numpy ; python_version>="3.0"',
  'numpy<1.17 ; python_version<"3.0"',
]
build-backend = "setuptools.build_meta"

[project]
name = "lie_learn"
version = "0.0.2"
description = "A python package that knows how to do various tricky computations related to Lie groups and manifolds (mainly the sphere S2 and rotation group SO3)."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">2.7,!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"

classifiers = [
  "Programming Language :: Python :: 2.7",
  "Programming Language :: Python :: 3",
  "Programming Language :: Python :: 3.9",
  "Programming Language :: Python :: 3.10",
  "Programming Language :: Python :: 3.11",
  "Programming Language :: Python :: 3.12",
  "License :: OSI Approved :: MIT License",
  "Operating System :: OS Independent",
]
dependencies = [
  'requests',
  'numpy ; python_version>="3.0"',
  'scipy ; python_version>="3.0"',
  'numpy<1.17 ; python_version<"3.0"',
  'scipy<1.3 ; python_version<"3.0"',
  # 'pynfft':  # This installation is complicated. Do it yourself.
]

[project.urls]
'Source Code' = "https://github.com/AMLab-Amsterdam/lie_learn"