-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace setuptools/setup.py with PEP621 metadata and flit (#14)
Summary: - Replace setuptools/setup.py with PEP621 metadata and flit - Test on macos Pull Request resolved: #14 Test Plan: ci Reviewed By: cxxxs Differential Revision: D51734315 Pulled By: fried fbshipit-source-id: d660885596e2a8c34641587ffbd0a074184e7b7c
- Loading branch information
1 parent
cf7b2bb
commit 6334071
Showing
9 changed files
with
57 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
- package-ecosystem: github-actions | ||
# Workflow files in .github/workflows will be checked | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
interval: daily | ||
- package-ecosystem: pip | ||
directory: "/" | ||
schedule: | ||
interval: daily |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,6 +61,7 @@ target/ | |
#Ipython Notebook | ||
.ipynb_checkpoints | ||
|
||
.python-version | ||
.venv | ||
.venv37 | ||
.mypy_cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[build-system] | ||
requires = ["flit-core >= 3.8"] | ||
build-backend = "flit_core.buildapi" | ||
|
||
[project] | ||
name = "later" | ||
dynamic = ["version", "description"] | ||
readme = "README.rst" | ||
authors = [ | ||
{name="Meta Platforms, Inc"}, | ||
{name="Jason Fried", email="[email protected]"}, | ||
] | ||
license = {file="LICENSE"} | ||
keywords = ["asyncio", "later"] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Framework :: AsyncIO", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: POSIX", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Software Development :: Testing", | ||
] | ||
|
||
requires-python = ">=3.7" | ||
dependencies = [ | ||
"async-timeout >= 2.0.0, < 5.0.0", | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"async-timeout==3.0.1", | ||
"coverage==4.5.4", | ||
] | ||
|
||
[project.urls] | ||
Github = "https://github.com/facebookincubator/later" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
[metadata] | ||
license_file = LICENSE | ||
|
||
[tox:tox] | ||
envlist = py37, py37-minimal, py38 | ||
|
||
|