forked from ECSIM/opem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (29 loc) · 1017 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
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name = 'opem',
packages = ['opem'],
version = '0.2',
description = 'Open Source PEM Cell Simulation Tool',
long_description='''Open Source PEM Cell Simulation Tool''',
author = 'Sepand Haghighi,Kasra Askari,Sarmin Hamidi,Mohammad Mahdi Rahimi',
author_email = '[email protected]',
url = 'https://github.com/ecsim/opem',
download_url = 'https://github.com/ecsim/opem/tarball/v0.2',
keywords = ["OPEM","PEM","FC","CELL","Fuel Cell","Chemistry"],
install_requires=[
'art',
'codecov',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Chemistry',
],
license='MIT',
)