-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Complete switch to pyproject.toml and use git tags as versions.
- Loading branch information
Showing
3 changed files
with
37 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,47 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "wrds" | ||
version = "3.1.3" | ||
description = "Python access to WRDS Data" | ||
description = "Access WRDS data through PostgreSQL in Python." | ||
authors = [ | ||
{name="Eric Stein", email="[email protected]"}, | ||
{name="Alex Malek", email="[email protected]"}, | ||
{name = "Eric Stein", email = "[email protected]"}, | ||
{name = "Alex Malek", email = "[email protected]"}, | ||
{name = "Tim Allen", email = "[email protected]"}, | ||
{name = "Jeff VanSickle", email = "[email protected]"}, | ||
] | ||
license = { file="LICENSE" } | ||
license = {text = "BSD-3-Clause"} | ||
readme = "README.rst" | ||
requires-python = ">=3.6" | ||
|
||
requires-python = ">=3.7" | ||
keywords = ["wrds", "finance", "research", "crsp", "compustat"] | ||
|
||
classifiers = [ | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'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', | ||
] | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"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", | ||
"pandas", | ||
"psycopg2-binary", | ||
"scipy", | ||
"sqlalchemy<2", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
"Homepage" = "http://www.whartonwrds.com" | ||
"Homepage" = "http://wrds-www.wharton.upenn.edu" | ||
"Repository" = "https://github.com/wharton/wrds" | ||
"Documentation" = "https://wrds-www.wharton.upenn.edu/pages/support/programming-wrds/programming-python/" | ||
|
||
[dependencies] | ||
mock = "~4.0" | ||
numpy = "~1.20" | ||
pandas= "~1.2" | ||
psycopg2-binary = "~2.8" | ||
scipy = "~1.6" | ||
SQLAlchemy = "~1.4" | ||
|
||
[build-system] | ||
# These are the assumed default build requirements from pip: | ||
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support | ||
requires = ["setuptools>=40.8.0", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
"Documentation" = "https://github.com/wharton/wrds/blob/master/README.rst" |