-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): prepare v1.0.0 release
- Loading branch information
1 parent
01a08fe
commit 2894f0c
Showing
1 changed file
with
4 additions
and
4 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,15 +1,15 @@ | ||
from setuptools import find_packages, setup | ||
|
||
setup( | ||
name='notion_automation', # Package name (used in `pip install`) | ||
version='0.1.0', # Follow semantic versioning | ||
name='notion_automation', | ||
version='1.0.0', | ||
description='Automate Notion database creation with JSON schemas', | ||
long_description=open('README.md').read(), | ||
long_description_content_type='text/markdown', | ||
author='Your Name', | ||
author_email='[email protected]', | ||
url='https://github.com/yourusername/notion-automation', # GitHub repo link | ||
packages=find_packages(), # Automatically detect packages | ||
url='https://github.com/yourusername/notion-automation', | ||
packages=find_packages(), | ||
install_requires=[ | ||
'requests', | ||
'python-dotenv', | ||
|