aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fg21sim/__init__.py5
-rwxr-xr-xsetup.py35
2 files changed, 18 insertions, 22 deletions
diff --git a/fg21sim/__init__.py b/fg21sim/__init__.py
index 1ea6cf7..b829e5b 100644
--- a/fg21sim/__init__.py
+++ b/fg21sim/__init__.py
@@ -6,12 +6,15 @@ Realistic Foregrounds Simulation for EoR 21cm Signal Detection
:license: MIT
"""
-__title__ = "fg21sim"
+__pkgname__ = "fg21sim"
__version__ = "0.0.1"
__author__ = "Weitian LI"
+__author_email__ = "liweitianux@live.com"
__license__ = "MIT"
__copyright__ = "Copyright (c) 2016 Weitian LI"
__url__ = "https://github.com/liweitianux/fg21sim"
+__description__ = ("Realistic Foregrounds Simulation for "
+ "EoR 21cm Signal Detection")
# Set default logging handle to avoid "No handler found" warnings.
diff --git a/setup.py b/setup.py
index a0ca71f..ba7ce8a 100755
--- a/setup.py
+++ b/setup.py
@@ -1,29 +1,22 @@
#!/usr/bin/env python3
-# -*- coding: utf-8 -*-
-
-import re
from setuptools import setup, find_packages
+import fg21sim as pkg
-with open('fg21sim/__init__.py') as f:
- version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
- f.read(), re.MULTILINE).group(1)
-
-with open('README.rst') as f:
- readme = f.read()
-
-with open('LICENSE') as f:
- license = f.read()
setup(
- name='fg21sim',
- version=version,
- description='Realistic Foregrounds Simulation for EoR 21cm Signal Detection',
- long_description=readme,
- author='Weitian LI',
- author_email='liweitianux@live.com',
- url='https://github.com/liweitianux/fg21sim',
- license=license,
- packages=find_packages(exclude=('tests', 'docs'))
+ name=pkg.__pkgname__,
+ version=pkg.__version__,
+ description=pkg.__description__,
+ long_description=open("README.rst").read(),
+ author=pkg.__author__,
+ author_email=pkg.__author_email__,
+ url=pkg.__url__,
+ license=pkg.__license__,
+ packages=find_packages(exclude=("tests", "docs")),
+ scripts=[
+ "bin/healpix2hpx",
+ "bin/hpx2healpix",
+ ],
)