Skip to content

Commit

Permalink
Complete switch to pyproject.toml and use git tags as versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
FlipperPA committed Feb 17, 2023
1 parent 880f0fc commit 7398dc7
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 123 deletions.
28 changes: 0 additions & 28 deletions Makefile

This file was deleted.

74 changes: 37 additions & 37 deletions pyproject.toml
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"
58 changes: 0 additions & 58 deletions setup.py

This file was deleted.

0 comments on commit 7398dc7

Please sign in to comment.