-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
44 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
43
44
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["PyIndi"]
[[tool.setuptools.ext-modules]]
name = "_PyIndi"
sources = ["PyIndi.py", "indiclientpython.i"]
include-dirs = ["/usr/include", "/usr/include/libindi", "/usr/local/include/libindi"]
libraries = ["z", "cfitsio", "nova", "indiclient"]
language = "c++"
swig-opts = ["-c++", "-threads", "-I/usr/include", "-I/usr/include/libindi", "-I/usr/local/include/libindi"]
[project]
name = "pyindi-client"
version = "2.1.2"
authors = [
{ name="geehalel", email="[email protected]" },
]
description = "Third party Python API for INDI client"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Programming Language :: Python',
'Operating System :: Unix',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
]
dependencies = [
"requests",
"bottle",
"dbus-python",
]
[project.urls]
"Homepage" = "https://github.com/indilib/pyindi-client"
"Bug Tracker" = "https://github.com/indilib/pyindi-client/issues"