Skip to content

Commit 603ff2d

Browse files
committed
Switch setup.py to pyproject.toml
And remove Francis' name as a contact.
1 parent 6e1d230 commit 603ff2d

2 files changed

Lines changed: 36 additions & 55 deletions

File tree

pyproject.toml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "scraperwiki"
7+
version = "0.5.1"
8+
description = "Local version of ScraperWiki libraries"
9+
authors = [
10+
{ name = "ScraperWiki Developers", email = "hello@scraperwiki.com" }
11+
]
12+
license = { text = "GPLv3+" }
13+
readme = "README.md" # Assumes you have a README file
14+
urls = { Repository = "https://github.com/scraperwiki/scraperwiki-python" }
15+
classifiers = [
16+
"Intended Audience :: Developers",
17+
"Intended Audience :: Science/Research",
18+
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
19+
"Programming Language :: Python :: 3.10",
20+
"Programming Language :: Python :: 3.11",
21+
"Programming Language :: Python :: 3.12",
22+
"Programming Language :: Python :: 3.13",
23+
"Programming Language :: Python :: 3.14",
24+
"Programming Language :: SQL",
25+
"Topic :: Database :: Front-Ends",
26+
]
27+
dependencies = [
28+
"requests",
29+
"six",
30+
"sqlalchemy==1.4.54",
31+
"alembic==1.17.2",
32+
]
33+
34+
[tool.setuptools.packages.find]
35+
where = ["."] # Or wherever your 'scraperwiki' package folder is located
36+
include = ["scraperwiki*"]

setup.py

Lines changed: 0 additions & 55 deletions
This file was deleted.

0 commit comments

Comments
 (0)