Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jph00 committed May 26, 2024
1 parent 4575501 commit b9d0bd8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 22 deletions.
2 changes: 1 addition & 1 deletion fastsql/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.0.1"
__version__ = "0.0.2"
from .core import *

33 changes: 13 additions & 20 deletions settings.ini
Original file line number Diff line number Diff line change
@@ -1,44 +1,37 @@
[DEFAULT]
### Python library ###
repo = fastsql
lib_name = %(repo)s
version = 0.0.1
lib_name = fastsql
version = 0.0.2
min_python = 3.9
license = apache2
black_formatting = False

### nbdev ###
doc_path = _docs
lib_path = fastsql
nbs_path = nbs
recursive = True
tst_flags = notest
put_version_in_init = True

### Docs ###
branch = master
custom_sidebar = False
doc_host = https://%(user)s.github.io
doc_baseurl = /%(repo)s
git_url = https://github.com/%(user)s/%(repo)s
title = %(lib_name)s

### PyPI ###
doc_host = https://fastai.github.io
doc_baseurl = /fastsql
git_url = https://github.com/fastai/fastsql
title = fastsql
audience = Developers
author = Jeremy Howard
author_email = [email protected]
copyright = 2022 onwards, %(author)s
copyright = 2022 onwards, Jeremy Howard
description = A bit of extra usability for sqlalchemy v2.
keywords = nbdev jupyter notebook python sqlalchemy sql orm
language = English
status = 3
user = fastai
conda_user = fastai

requirements = fastcore sqlalchemy>=2

### Optional ###
# dev_requirements =
# console_scripts =
# package_data =
readme_nb = index.ipynb
allowed_metadata_keys =
allowed_cell_metadata_keys =
jupyter_hooks = False
clean_ids = True
clear_all = False

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
dev_requirements = (cfg.get('dev_requirements') or '').split()

setuptools.setup(
name = 'python-fasthtml',
name = cfg['lib_name'],
license = lic[0],
classifiers = [
'Development Status :: ' + statuses[int(cfg['status'])],
Expand Down

0 comments on commit b9d0bd8

Please sign in to comment.