From 1de9b25886f919eb19b27b26fac6e630a0452c4d Mon Sep 17 00:00:00 2001 From: Eric Stein Date: Wed, 18 Aug 2021 16:10:51 -0400 Subject: [PATCH] Adds pyproject dependencies --- pyproject.toml | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..56435e4 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,45 @@ +[project] +name = "wrds" +version = "3.1.0" +description = "Python access to WRDS Data" +authors = [ + "Eric Stein ", + "Alex Malek " +] +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" \ No newline at end of file