-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 952 Bytes
/
setup.py
File metadata and controls
36 lines (34 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import sys
import os
try: from setuptools import setup
except ImportError: from distutils.core import setup
import versioneer
URL = 'https://github.com/des-science/CosmoDM'
setup(
name='CosmoDM',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url=URL,
author='Alex Drlica-Wagner',
author_email='kadrlica@fnal.gov',
scripts = [],
install_requires=[
'matplotlib',
'numpy',
'scipy',
'astropy',
'pandas',
],
packages=['cosmodm',],
package_data={},
description="Tools for modeling the cosmological implications of dark matter microphysics",
long_description="See %s"%URL,
platforms='any',
keywords='python astronomy plotting',
classifiers = [
'Programming Language :: Python',
'Development Status :: 2 - Pre-Alpha',
'Natural Language :: English',
'Intended Audience :: Science/Research',
]
)