forked from J535D165/pyalex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (30 loc) · 958 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
32
33
34
[project]
name = "pyalex"
description = "One downloader for many scientific data and code repositories!"
authors = [
{ name = "Jonathan de Bruin", email = "jonathandebruinos@gmail.com" }
]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
license = {text = "MIT"}
dependencies = ["requests"]
dynamic = ["version"]
requires-python = ">=3.6"
[project.optional-dependencies]
lint = ["flake8", "flake8-import-order"]
test = ["pytest"]
[build-system]
build-backend = 'setuptools.build_meta'
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
[tool.setuptools]
packages = ["pyalex"]
[tool.setuptools_scm]
write_to = "pyalex/_version.py"