-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.09 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (35 loc) · 1.09 KB
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
from setuptools import setup, find_packages
# print(find_packages('.'))
setup(
name='slrealizer',
version='0.2.1',
author='Phil Marshall',
author_email='dr.phil.marshall@gmail.com',
#packages=['slrealizer'],
packages=find_packages(),
license='LICENSE.md',
description='Catalog-level realization of simulated gravitational lenses.',
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
url='https://github.com/LSSTDESC/SLRealizer',
install_requires=[
"pybind",
"pip==9.0.3",
"numpy>=1.13",
"future>=0.15",
"matplotlib>=2.2.2",
"astropy==2.0",
"pandas>=0.20",
"scikit-learn==0.19.2",
"corner",
"galsim"],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python'],
keywords='physics'
)