[Python-modules-commits] [python-pysolar] 01/02: Added setup.py and MANIFEST.in

Wolfgang Borgert debacle at moszumanska.debian.org
Fri Oct 3 23:36:22 UTC 2014


This is an automated email from the git hooks/post-receive script.

debacle pushed a commit to annotated tag 0.4.1
in repository python-pysolar.

commit 6f7f4be3a27d393f3672040748d7a5d63707a735
Author: pingswept <brandon at pingswept.org>
Date:   Thu Jun 18 23:29:58 2009 -0400

    Added setup.py and MANIFEST.in
---
 MANIFEST.in |  1 +
 setup.py    | 29 +++++++++++++++++++++++++++++
 2 files changed, 30 insertions(+)

diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..6c9e6b4
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1 @@
+include *.py
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..809a603
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,29 @@
+#!/usr/bin/env python
+
+from distutils.core import setup
+
+classifiers = ['Development Status :: 5 - Production/Stable',
+    'Environment :: Console',
+    'Intended Audience :: Developers',
+    'Intended Audience :: Science/Research',
+    'License :: OSI Approved :: GNU General Public License (GPL)',
+    'Natural Language :: English',
+    'Operating System :: OS Independent',
+    'Programming Language :: Python',
+    'Topic :: Scientific/Engineering',
+    'Topic :: Scientific/Engineering :: Atmospheric Science',
+    'Topic :: Scientific/Engineering :: Mathematics',
+    'Topic :: Software Development :: Libraries :: Python Modules']
+
+
+setup(name='Pysolar',
+    version='0.4.1',
+    description='Collection of Python libraries for simulating the irradiation of any point on earth by the sun',
+    author='Brandon Stafford',
+    author_email='brandon at pingswept.org',
+    license = 'GNU General Public License (GPL)',
+    url='http://pysolar.org',
+    py_modules=['constants', 'horizon', 'julian', 'poly', 'query_usno', 'radiation', 'shade', 'shade_test', 'simulate', 'solar', 'testsolar', 'util'],
+    requires = ['decimaldegrees', 'gtk', 'numpy', 'PIL', 'pygtk', 'pylab', 'pytz'],
+    )
+

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-pysolar.git



More information about the Python-modules-commits mailing list