Skip to content

Commit 218f0bc

Browse files
committed
update build system
1 parent aba326c commit 218f0bc

File tree

2 files changed

+37
-35
lines changed

2 files changed

+37
-35
lines changed

pyproject.toml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[build-system]
2+
requires = ["setuptools", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "dropboxdrivefs"
7+
version = "1.4.0"
8+
description = "Dropbox implementation for fsspec module"
9+
readme = "README.md"
10+
11+
requires-python = ">=3.5"
12+
license = { text = "BSD License" }
13+
14+
dependencies = [
15+
"fsspec",
16+
"requests",
17+
"dropbox"
18+
]
19+
20+
authors = [
21+
{ name = "Marine Chaput", email = "marine.chaput@hotmail.fr" }
22+
]
23+
urls = { "Homepage" = "https://github.com/fsspec/dropboxdrivefs" }
24+
classifiers = [
25+
"Development Status :: 4 - Beta",
26+
"Intended Audience :: Developers",
27+
"License :: OSI Approved :: BSD License",
28+
"Operating System :: OS Independent",
29+
"Programming Language :: Python :: 3.5",
30+
"Programming Language :: Python :: 3.6",
31+
"Programming Language :: Python :: 3.7",
32+
"Programming Language :: Python :: 3.8",
33+
"Programming Language :: Python :: 3.9",
34+
]
35+
36+
[tool.setuptools.packages.find]
37+
where = ["dropboxdrivefs"]

setup.py

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

0 commit comments

Comments
 (0)