-
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.
Fixed __all__, added auto remove when building
- Loading branch information
1 parent
89ab64b
commit 7769cae
Showing
5 changed files
with
10 additions
and
9 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,5 +1,5 @@ | ||
""" | ||
Importing classes from modules | ||
""" | ||
__all__ = ["codeforces_api.api_requests"] | ||
__all__ = ["CodeforcesApi"] | ||
from codeforces_api.api_requests import CodeforcesApi |
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 +1,5 @@ | ||
RMDIR /Q /S build | ||
RMDIR /Q /S dist | ||
RMDIR /Q /S CodeforcesApiPy.egg-info | ||
python setup.py sdist bdist_wheel | ||
twine check dist/* |
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,4 @@ | ||
[bdist_wheel] | ||
universal=1 | ||
universal = 1 | ||
[metadata] | ||
description-file = README.md | ||
description-file = README.md |
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 |
---|---|---|
|
@@ -3,17 +3,14 @@ | |
""" | ||
from setuptools import setup, find_packages | ||
|
||
with open("README.md") as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name="CodeforcesApiPy", | ||
version="1.0.0", | ||
version="1.0.1", | ||
description="Implementation of codeforces.com api", | ||
platforms="any", | ||
url="https://github.com/VadVergasov/CodeforcesApiPy", | ||
long_description_content_type="text/markdown", | ||
long_description=long_description, | ||
long_description=open("README.md").read(), | ||
author="VadVergasov", | ||
author_email="[email protected]", | ||
license="MIT", | ||
|
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 +1 @@ | ||
twine upload dist/* | ||
twine upload dist/* |