-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 894 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
26
27
28
29
30
31
32
from setuptools import setup, find_packages
import os
version_file = open(os.path.join('.', 'VERSION.txt'))
version_number = version_file.read().strip()
version_file.close()
setup(
name = 'barmat',
description = 'Mattis-Bardeen surface impedance calculator.',
version = version_number,
author = 'Faustin Carter',
author_email = 'faustin.carter@gmail.com',
license = 'MIT',
url = 'http://github.com/FaustinCarter/barmat',
packages = ['barmat'],
long_description = open('README.rst').read(),
install_requires = [
'numpy',
'scipy',
'numba',
'joblib',
],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Physics'
]
)