forked from mfouesneau/ezpadova
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 803 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(name = "ezpadova",
version = 1.0,
description = "A python package that allows you to download PADOVA/PARSEC isochrones directly from their website",
long_description = readme(),
author = "Morgan Fouesneau",
author_email = "",
url = "https://github.com/mfouesneau/ezpadova",
packages = find_packages(),
package_data = {'ezpadova':['*.json']},
include_package_data = True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Astronomy'
],
zip_safe=False
)