-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove config folder and refactoring it as a Python module (#13)
* Update changes * bump version * Updating file name * Manifest Update * Test non-wheel upload * Convert config JSON to Python module * Remove configparser dependency Co-authored-by: James Li <[email protected]>
- Loading branch information
1 parent
08ff655
commit b820df9
Showing
6 changed files
with
14 additions
and
141 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,3 +1,2 @@ | ||
include README* | ||
include *.txt | ||
include config.json | ||
include *.txt |
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
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,4 +1,3 @@ | ||
requests | ||
configparser | ||
ratelimit | ||
backoff |
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 |
---|---|---|
|
@@ -6,20 +6,20 @@ | |
|
||
setuptools.setup( | ||
name="pyonfleet", | ||
version= "1.0.2", | ||
version= "1.1.0", | ||
author="James Li", | ||
author_email="[email protected]", | ||
description="Onfleet's Python API Wrapper Package", | ||
long_description=README, | ||
long_description_content_type="text/markdown", | ||
url="http://docs.onfleet.com", | ||
packages=setuptools.find_packages(), | ||
data_files=[ | ||
("config", ["config/config.json"]) | ||
], | ||
include_package_data=True, | ||
package_data={ | ||
"": ["*.json"] | ||
}, | ||
install_requires=[ | ||
"requests", "configparser", "ratelimit", "backoff" | ||
"requests", "ratelimit", "backoff" | ||
], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3.7", | ||
|