-
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.
Merge pull request #27 from ACTCollaboration/dev
Dev
- Loading branch information
Showing
6 changed files
with
156 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,21 @@ | ||
[metadata] | ||
name = zCluster | ||
author = Matt Hilton + zCluster Contributors | ||
author_email = [email protected] | ||
url = https://github.com/ACTCollaboration/zCluster | ||
description = A code for measuring galaxy cluster photometric redshifts | ||
long_description = file: README.rst | ||
keywords = astrophysics | ||
license = GPL v3 | ||
classifiers = | ||
Programming Language :: Python :: 3 | ||
Environment :: Console | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: GNU General Public License v3 (GPLv3) | ||
Natural Language :: English | ||
Operating System :: POSIX | ||
Topic :: Scientific/Engineering :: Astronomy | ||
|
||
[versioneer] | ||
VCS = git | ||
style = pep440 | ||
|
@@ -6,3 +24,11 @@ versionfile_build = zCluster/_version.py | |
tag_prefix = v | ||
parentdir_prefix = zCluster- | ||
|
||
[options] | ||
install_requires = | ||
astropy >= 4.0 | ||
numpy >= 1.19 | ||
matplotlib >= 2.0 | ||
astLib >= 0.11.10 | ||
scipy >= 1.0 | ||
requests |
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 |
---|---|---|
|
@@ -4,35 +4,14 @@ | |
import glob | ||
from setuptools import setup | ||
from setuptools import Extension | ||
from setuptools.command.install import install | ||
import stat | ||
#from Cython.Distutils import build_ext | ||
import numpy | ||
import versioneer | ||
|
||
cmdclass=versioneer.get_cmdclass() | ||
#cmdclass['build_ext']=build_ext | ||
|
||
setup(name='zCluster', | ||
version=versioneer.get_version(), | ||
cmdclass=cmdclass, | ||
url="https://github.com/ACTCollaboration/zCluster", | ||
author='Matt Hilton + zCluster contributors', | ||
author_email='[email protected]', | ||
classifiers=[], | ||
description='A code for measuring galaxy cluster photometric redshifts.', | ||
long_description="""A code for measuring galaxy cluster photometric redshifts. Runs on both large scale | ||
public survey data (e.g., SDSS) and user-supplied photometric catalogs.""", | ||
author_email='[email protected]', | ||
packages=['zCluster'], | ||
package_data={'zCluster': ['data/*', 'SED/CWW/*', 'SED/BR07/*', 'SED/EAZY_v1.0/*', | ||
'passbands/*']}, | ||
scripts=['bin/zCluster', 'bin/zField', 'bin/zClusterBCG', 'bin/zClusterComparisonPlot'], | ||
#ext_modules=[Extension("zClusterCython", ["zCluster/zClusterCython.pyx"], include_dirs=[numpy.get_include()])], | ||
install_requires=["astropy >= 4.0", | ||
"numpy >= 1.19", | ||
"matplotlib >= 2.0", | ||
"astLib >= 0.11.7", | ||
"scipy >= 1.0", | ||
#"cython", | ||
"requests"] | ||
) |
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