Skip to content

Commit

Permalink
new nemopy
Browse files Browse the repository at this point in the history
  • Loading branch information
teuben committed Oct 29, 2022
1 parent 87384f1 commit c931d40
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
#!/usr/bin/env python

from setuptools import setup
from setuptools import setup, find_packages

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

modcontents = open('nemopy/__init__.py').read()

setup(
name = 'astroNEMO',
version = open('VERSION').read().strip(),
Expand All @@ -14,10 +16,11 @@ def read(fname):
license = 'BSD',
keywords = 'astronomy',
url = 'https://github.com/teuben/nemo',

packages = ['astroNEMO'],

packages = find_packages(),
# packages = ['astroNEMO'],
install_requires = ['numpy'],
package_data = { '.': ['nemo_start.py'] },
# package_data = { '.': ['nemo_start.py'] },

# long_description=read('README.md'),

Expand Down

0 comments on commit c931d40

Please sign in to comment.