-
Notifications
You must be signed in to change notification settings - Fork 47
/
pyproject.toml
51 lines (48 loc) · 1.7 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
48
49
50
51
[build-system]
requires = ["setuptools>=67", "setuptools_scm>=7", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "wrds/_version.py"
[project]
name = "wrds"
description = "Access WRDS data through PostgreSQL in Python."
authors = [
{name = "Alex Malek", email = "amalek@wharton.upenn.edu"},
{name = "Tim Allen", email = "tallen@wharton.upenn.edu"},
{name = "Jeff VanSickle", email = "vjef@wharton.upenn.edu"},
]
license = {text = "BSD-3-Clause"}
readme = "README.md"
requires-python = ">=3.8"
keywords = ["wrds", "finance", "research", "crsp", "compustat"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Office/Business :: Financial",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: BSD License",
]
dependencies = [
"numpy>=1.26,<1.27",
"packaging<23.3",
"pandas>=2.2,<2.3",
"psycopg2-binary>=2.9,<2.10",
"scipy>=1.12,<1.13",
"sqlalchemy>=2,<2.1",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "http://wrds-www.wharton.upenn.edu"
"Repository" = "https://github.com/wharton/wrds"
"Documentation" = "https://github.com/wharton/wrds/blob/master/README.md"