https://github.com/teuben/nemo
Revision 27d447ea1e0c092be8e577a3569a022c11e2c3bc authored by Peter Teuben on 07 April 2021, 03:16:34 UTC, committed by Peter Teuben on 07 April 2021, 03:16:34 UTC
1 parent 6692e35
Raw File
Tip revision: 27d447ea1e0c092be8e577a3569a022c11e2c3bc authored by Peter Teuben on 07 April 2021, 03:16:34 UTC
dynamic loader should be simpler (i5-11x?) clang
Tip revision: 27d447e
setup.py
#!/usr/bin/env python

from setuptools import setup

def read(fname):
    return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
    name = 'astroNEMO',
    version = open('VERSION').read().strip(),
    author = 'Peter Teuben',
    author_email = 'teuben@astro.umd.edu',
    description = 'Python tools to aid in using NEMO in python',
    license = 'BSD',
    keywords = 'astronomy',
    url = 'https://github.com/teuben/nemo',
    
    packages = ['astroNEMO'],
    install_requires = ['numpy'],
    package_data = { '.': ['nemo_start.py'] },

    # long_description=read('README.md'),
 
)
back to top