|
1 |
| -#!/usr/bin/env python |
2 |
| - |
3 |
| -import glob |
4 |
| - |
5 |
| -from setuptools import setup |
6 |
| - |
7 |
| -scripts = glob.glob('bin/*') |
8 |
| - |
9 |
| -description = "Fast generation of Lya catalogs" |
10 |
| - |
11 |
| -version='0.1' |
12 |
| -setup(name="LyaCoLoRe", |
13 |
| - version=version, |
14 |
| - description=description, |
15 |
| - url="https://github.com/igmhub/LyaCoLoRe", |
16 |
| - author="<your name here>", |
17 |
| - author_email="<your email here>", |
18 |
| - packages=['LyaCoLoRe'], |
19 |
| - package_dir = {'': 'py'}, |
20 |
| - package_data = {'LyaCoLoRe': ['etc/']}, |
21 |
| - install_requires=['numpy','scipy','iminuit','healpy','fitsio', |
22 |
| - 'numba','future','setuptools'], |
23 |
| - test_suite='LyaCoLoRe.test.test_cor', |
24 |
| - scripts = scripts |
25 |
| - ) |
| 1 | +from distutils.core import setup |
| 2 | + |
| 3 | +setup(name='LyaCoLoRe', |
| 4 | + version='0.1', |
| 5 | + description='Fast generation of Lya catalogs', |
| 6 | + author='igmhub', |
| 7 | + author_email='github.com/igmhub', |
| 8 | + url='https://github.com/igmhub/LyaCoLoRe', |
| 9 | + packages=['lyacolore'], |
| 10 | + package_dir = {'lyacolore': 'py'}, |
| 11 | + ) |
0 commit comments