-
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.
- Loading branch information
1 parent
b2db843
commit 818fc1e
Showing
3 changed files
with
73 additions
and
0 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,11 @@ | ||
build: clean | ||
python setup.py sdist bdist_wheel | ||
|
||
upload_to_test_pypi: | ||
python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/* | ||
|
||
upload_to_pypi: | ||
python -m twine upload dist/* | ||
|
||
clean: | ||
-rm -r 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
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,21 @@ | ||
import setuptools | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="stime", | ||
version="0.1.2", | ||
author="Gonzalo Bulnes Guilpain", | ||
author_email="[email protected]", | ||
description="A testing (and partial) replacement for the time package, for fully-controlled time-dependent tests.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/gonzalo-bulnes/stime", | ||
packages=setuptools.find_packages(), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Operating System :: OS Independent", | ||
], | ||
) |