-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.53 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
45
46
47
[build-system]
requires = ["setuptools>=69.1", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "sosia"
authors = [{name = "Michael E. Rose and Stefano H. Baruffaldi", email = "[email protected]"}]
maintainers = [{name = "Michael E. Rose", email = "[email protected]"}]
description = "Find control groups for academics in Scopus"
readme = "README.rst"
license = {text = "MIT"}
dependencies = [
"numpy",
"typing_extensions",
"pandas>=2.1.0",
"pybliometrics>=4.0",
"tqdm"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
]
keywords = ["sosia", "control groups", "research"]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/sosia-dev/sosia"
"Bug Tracker" = "https://github.com/sosia-dev/sosia/issues"
"Documentation (stable)" = "https://sosia.readthedocs.io/en/stable/"
"Documentation (latest)" = "https://sosia.readthedocs.io/en/latest/"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["sosia", "sosia.*"]
[tool.setuptools_scm]