Skip to content

Commit 4eb8126

Browse files
authored
Use pyproject.toml (GH-3)
- remove flit.ini - bump version number
1 parent d33bcb6 commit 4eb8126

File tree

3 files changed

+19
-16
lines changed

3 files changed

+19
-16
lines changed

flit.ini

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

pyproject.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[build-system]
2+
requires = ["flit"]
3+
build-backend = "flit.buildapi"
4+
5+
[tool.flit.metadata]
6+
module = "pytaco"
7+
author = "Mariatta Wijaya"
8+
author-email = "[email protected]"
9+
maintainer = "Mariatta Wijaya"
10+
maintainer-email = "[email protected]"
11+
home-page = "https://github.com/Mariatta/pytaco"
12+
description-file = "README.rst"
13+
classifiers = ["Programming Language :: Python :: 3.6", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License"]
14+
requires-python = ">=3.6"
15+
16+
17+
[tool.flit.scripts]
18+
pytaco = "pytaco:main"

pytaco.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
"""How many tacos for a meetup?"""
44

5-
__version__ = "1.0.0"
5+
__version__ = "1.0.2"
66

77

88
def main():

0 commit comments

Comments
 (0)