We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d92a6c commit 18d0d6cCopy full SHA for 18d0d6c
environment.yml
@@ -7,8 +7,10 @@ dependencies:
7
- xarray
8
- pip
9
- pre-commit
10
- - pytest
11
- - black
+ - pytest # for tests
+ - black # code formatting
12
+ - twine # for uploading to PyPI
13
+ - bump2version
14
- pip:
15
- lazy-loader
16
- tuna
setup.py
@@ -64,7 +64,9 @@ def run(self):
64
pass
65
66
self.status("Building Source and Wheel (universal) distribution…")
67
- os.system("{0} setup.py sdist bdist_wheel --universal".format(sys.executable))
+ os.system(
68
+ "{0} setup.py sdist bdist_wheel --universal".format(sys.executable)
69
+ )
70
71
self.status("Uploading the package to PyPi via Twine…")
72
os.system("twine upload dist/*")
0 commit comments