forked from equinor/fmu-steaclient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (33 loc) · 1.14 KB
/
setup.py
File metadata and controls
executable file
·38 lines (33 loc) · 1.14 KB
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
33
34
35
36
37
38
#!/usr/bin/env python
from setuptools import setup
long_description = """
====
stea
====
Introduction
------------
"""
setup(name='stea',
description='stea - calculate economic analysis',
long_description=long_description,
author="Software Innovation Bergen, Equinor ASA",
url='https://github.com/equinor/stea',
packages=['stea'],
setup_requires=['setuptools_scm'],
use_scm_version={'write_to': 'stea/version.py'},
platforms='any',
install_requires=['requests','pyyaml','configsuite'],
test_suite='tests.suite',
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)