-
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.
Merge pull request #29 from wharton/add_ci
Adds pyproject dependencies
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
[project] | ||
name = "wrds" | ||
version = "3.1.0" | ||
description = "Python access to WRDS Data" | ||
authors = [ | ||
"Eric Stein <ericst@wharton.upenn.edu>", | ||
"Alex Malek <amalek@wharton.upenn.edu>" | ||
] | ||
license = "MIT" | ||
readme = "README.rst" | ||
python = "^3.6" | ||
homepage = "http://www.whartonwrds.com" | ||
repository = "https://github.com/wharton/wrds" | ||
documentation = "https://wrds-www.wharton.upenn.edu/pages/support/programming-wrds/programming-python/" | ||
|
||
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' | ||
] | ||
|
||
[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" |