Skip to content

Commit 2ba4aef

Browse files
committed
updated packaging meta/data
1 parent e2a969d commit 2ba4aef

File tree

3 files changed

+40
-24
lines changed

3 files changed

+40
-24
lines changed

pyproject.toml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[build-system]
2+
requires = [
3+
"setuptools>=42",
4+
"wheel"
5+
]
6+
build-backend = "setuptools.build_meta"
7+
8+
[project]
9+
name = "pyprojroot"
10+
version = "0.3.0"
11+
authors = [
12+
{ name="Daniel Chen", email="[email protected]" },
13+
]
14+
description = "Project-oriented workflow in Python"
15+
readme = "README.md"
16+
dependencies = [
17+
"typing-extensions"
18+
]
19+
requires-python = ">=3.7"
20+
classifiers = [
21+
"Programming Language :: Python :: 3",
22+
"License :: OSI Approved :: MIT License",
23+
"Operating System :: OS Independent",
24+
]
25+
26+
[project.urls]
27+
"Homepage" = "https://github.com/chendaniely/pyprojroot"
28+
"Bug Tracker" = "https://github.com/chendaniely/pyprojroot/issues"

setup.cfg

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[options]
2+
packages = find:
3+
package_dir =
4+
= src
5+
include_package_data = True
6+
7+
[options.packages.find]
8+
where = src
9+
10+
[options.package_data]
11+
pyprojroot =
12+
py.typed

setup.py

-24
This file was deleted.

0 commit comments

Comments
 (0)