-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from jugaad-py/migrate-pyprojects
Migrated to pyproject.yaml
- Loading branch information
Showing
6 changed files
with
41 additions
and
44 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
YOLO LICENSE | ||
Version 2, July 29 2016 | ||
|
||
THIS SOFTWARE LICENSE IS PROVIDED "ALL CAPS" SO THAT YOU KNOW IT IS SUPER | ||
SERIOUS AND YOU DON'T MESS AROUND WITH COPYRIGHT LAW BECAUSE YOU WILL GET IN | ||
TROUBLE HERE ARE SOME OTHER BUZZWORDS COMMONLY IN THESE THINGS WARRANTIES | ||
LIABILITY CONTRACT TORT LIABLE CLAIMS RESTRICTION MERCHANTABILITY. NOW HERE'S | ||
THE REAL LICENSE: | ||
|
||
0. jugaad-data is in public domain. | ||
1. Do whatever you want with it. | ||
2. Stop emailing me about it! |
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 |
---|---|---|
@@ -1,3 +1 @@ | ||
__version__ = "0.24" | ||
|
||
|
||
__version__= "0.25" |
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,27 @@ | ||
[build-system] | ||
requires = ["setuptools >= 61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "jugaad-data" | ||
version = "0.25" | ||
requires-python = ">= 3.6" | ||
authors = [{"name"= "jugaad-coder", "email"="abc@xyz.com"}] | ||
description = "Free Zerodha API python library" | ||
readme = "README.md" | ||
license = {file = "LICENSE.YOLO.md"} | ||
keywords = ["NSE", "Live", "Bhavcopy", "History", "Futures", "Options", "Stock Data"] | ||
dynamic = ["dependencies"] | ||
|
||
|
||
[project.scripts] | ||
jdata = "jugaad_data.cli:cli" | ||
|
||
[project.urls] | ||
Homepage = "https://marketsetup.in/documentation/jugaad-data/" | ||
Documentation = "https://marketsetup.in/documentation/jugaad-data/" | ||
Repository = "https://github.com/jugaad-py/jugaad-data" | ||
Issues = "https://github.com/jugaad-py/jugaad-data/issues" | ||
|
||
[tool.setuptools.dynamic] | ||
dependencies = {file = ["requirements.txt"]} |