https://github.com/jiwoncpark/baobab
Revision cb347a596820ec80698678a2b273020693056983 authored by jiwoncpark on 12 June 2020, 01:09:56 UTC, committed by jiwoncpark on 12 June 2020, 01:09:56 UTC
1 parent fd335ee
Raw File
Tip revision: cb347a596820ec80698678a2b273020693056983 authored by jiwoncpark on 12 June 2020, 01:09:56 UTC
Fix lens equation precision to 0.05 because 0.08 (current pixel size) yields erratic image number
Tip revision: cb347a5
setup.py
from setuptools import setup, find_packages
#print(reqs)

setup(
      name='pybaobab',
      version='0.1.0',
      author='Ji Won Park',
      author_email='jiwon.christine.park@gmail.com',
      packages=find_packages(),
      license='LICENSE.md',
      description='Data generator for hierarchically modeling strongly-lensed systems with Bayesian neural networks',
      long_description=open("README.rst").read(),
      long_description_content_type='text/markdown',
      url='https://github.com/jiwoncpark/baobab',
      #install_requires=required_packages,
      #dependency_links=[
      #'http://github.com/sibirrer/fastell4py/tarball/master#egg=fastell4py',],
      include_package_data=True,
      entry_points={
      'console_scripts': ['generate=baobab.generate:main', 'to_hdf5=baobab.to_hdf5:main'],
      },
      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'
      )
back to top