-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix several small issues with BaseMain
Up version to 0.4.1
- Loading branch information
Showing
7 changed files
with
26 additions
and
14 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
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
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,6 @@ | ||
pip | ||
twine | ||
pip | ||
twine==3.2.0 | ||
setuptools>=40.8.0 | ||
wheel | ||
tox |
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,6 +1,5 @@ | ||
import pathlib | ||
from setuptools import find_packages, setup | ||
import version | ||
|
||
# The directory containing this file | ||
HERE = pathlib.Path(__file__).parent | ||
|
@@ -9,15 +8,18 @@ | |
README = (HERE / "README.md").read_text() | ||
|
||
setup(name='django-rest-framework-client', | ||
version=version.version, | ||
version='0.4.1', | ||
description='Python client for a DjangoRestFramework based web site', | ||
long_description=README, | ||
long_description_content_type="text/markdown", | ||
url='https://github.com/dkarchmer/django-rest-framework-client', | ||
author='David Karchmer', | ||
author_email="[email protected]", | ||
license='MIT', | ||
packages=find_packages(exclude=("tests",)), | ||
packages=[ | ||
'drf_client', | ||
'drf_client.helpers', | ||
], | ||
install_requires=[ | ||
'requests', | ||
], | ||
|
This file was deleted.
Oops, something went wrong.