Skip to content

Commit

Permalink
added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
timothydmorton committed Sep 4, 2014
1 parent 170d8ea commit 4af0eb5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
1 change: 0 additions & 1 deletion MANIFEST.in

This file was deleted.

25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from setuptools import setup, find_packages

def readme():
with open('README.rst') as f:
return f.read()

setup(name = "isochrones",
version = "0.1",
description = "Defines objects for interpolating stellar model grids.",
long_description = readme(),
author = "Timothy D. Morton",
author_email = "tim.morton@gmail.com",
url = "https://github.com/timothydmorton/isochrones",
packages = find_packages(),
package_data = {'':['data/*']},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Astronomy'
],
install_requires=['plotutils','pandas','astropy','emcee'],
zip_safe=False
)

0 comments on commit 4af0eb5

Please sign in to comment.