-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 714 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name = 'tomso',
packages = ['tomso'],
version = '0.2.2',
description = 'Tools for Models of Stars and their Oscillations',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author = 'Warrick Ball',
author_email = 'W.H.Ball@bham.ac.uk',
url = 'https://github.com/warrickball/tomso',
download_url = 'https://github.com/warrickball/tomso/archive/v0.2.2.tar.gz',
install_requires=['numpy', 'h5py'],
keywords = [],
scripts = ['scripts/tomso'],
license = 'MIT',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python"
]
)