Skip to content

Commit

Permalink
Merge pull request #29 from wharton/add_ci
Browse files Browse the repository at this point in the history
Adds pyproject dependencies
  • Loading branch information
Eric Stein authored Aug 18, 2021
2 parents b8bb096 + 1de9b25 commit 2d7c4ef
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions pyproject.toml
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"

0 comments on commit 2d7c4ef

Please sign in to comment.