-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Disable scheduled wheel tests on legacy toast2 branch.
* Add files for toast-cmb legacy wrapper package on PyPI. This package simply depends on the new toast package.
- Loading branch information
Showing
4 changed files
with
48 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
|
||
python3 setup.py sdist | ||
python3 setup.py bdist_wheel | ||
|
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,36 @@ | ||
# This setup.py is for building a legacy toast-cmb package on PyPI. | ||
|
||
import os | ||
import sys | ||
|
||
from setuptools import setup | ||
|
||
|
||
conf = dict() | ||
conf["name"] = "toast-cmb" | ||
conf["description"] = "ALIAS to Time Ordered Astrophysics Scalable Tools" | ||
conf["long_description"] = "This package is a deprecated alias. Use https://pypi.org/project/toast instead." | ||
conf["long_description_content_type"] = "text/markdown" | ||
conf["author"] = "Theodore Kisner, Reijo Keskitalo" | ||
conf["author_email"] = "[email protected]" | ||
conf["license"] = "BSD" | ||
conf["url"] = "https://github.com/hpc4cmb/toast" | ||
conf["version"] = "2.3.14" | ||
conf["python_requires"] = ">=3.7.0" | ||
conf["setup_requires"] = (["wheel"],) | ||
conf["install_requires"] = ["toast",] | ||
conf["platforms"] = "all" | ||
conf["zip_safe"] = False | ||
conf["classifiers"] = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: POSIX", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Topic :: Scientific/Engineering :: Astronomy", | ||
] | ||
|
||
setup(**conf) |
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,4 @@ | ||
#!/bin/bash | ||
|
||
twine upload dist/toast* | ||
|