From 8e0aad8633ea3484a5a679fef6d04f7249f1400a Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Tue, 20 Sep 2016 17:28:55 +0800 Subject: Setup package structures Credit: https://github.com/kennethreitz/samplemod TODO: Add the 'docs' part --- setup.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..dc40675 --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +from setuptools import setup, find_packages + + +with open('README.rst') as f: + readme = f.read() + +with open('LICENSE') as f: + license = f.read() + +setup( + name='fg21sim', + version='0.0.1', + 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')) +) -- cgit v1.2.2