forked from BVengo/varstarfinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (30 loc) · 894 Bytes
/
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
[project]
name = "varstarfinder"
version = "0.0.1"
authors = [
{ name="Benjamin van de Vorstenbosch", email="[email protected]" },
]
description = "A package for accessing observing data for variable stars, using the AAVSO website and Targets API"
readme = "README.md"
license = { file="LICENSE.md" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Natural Language :: English"
]
dependencies = [
'pandas >= 1.4',
'requests >= 2.21',
'numpy >= 1.23',
'ephem >= 4.1',
'beautifulsoup4 >= 4.11',
'openpyxl >= 3.0',
'webdriver-manager >= 3.8',
'selenium >= 4.4'
]
[project.urls]
"Homepage" = "https://github.com/BVengo/varstarfinder"
"Issues" = "https://github.com/BVengo/varstarfinder/issues"