Skip to content

Commit

Permalink
Added setup.py and MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
pingswept committed Jun 19, 2009
1 parent a627996 commit 6f7f4be
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include *.py
29 changes: 29 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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@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'],
)

0 comments on commit 6f7f4be

Please sign in to comment.