-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 924 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
# -*- coding: utf-8 -*-
from setuptools import setup
execfile("tec/version.py")
setup(name="tec",
version=__version__,
author="Joshua Ryan Smith",
author_email="[email protected]",
packages=["tec",
"tec/electrode",
"tec/models"],
url="https://github.com/jrsmith3/tec",
license="MIT",
description="Utils for simulating vacuum thermionic energy conversion devices",
classifiers=["Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Natural Language :: English", ],
install_requires=["numpy",
"scipy>0.15",
"astropy",
"physicalproperty",
"ibei"], )