forked from msmasnadi/OPGEEv4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (42 loc) · 1.34 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from opgee.version import VERSION
from setuptools import setup
# Use the requirements generated by ./update-reqs.py, based on requirements.in
with open("requirements.txt") as f:
lines = f.readlines()
requirements = [line.strip() for line in lines if not line.startswith('#')]
long_description = '''
opgee
=======
The ``opgee`` package provides ...
Full documentation and a tutorial are available at
https://opgee.readthedocs.io.
Core functionality
------------------
* TBD
Who do I talk to?
------------------
* TBD
'''
setup(
name='opgee',
version=VERSION,
description='Python 3 package implementing life cycle analysis of oil fields',
platforms=['Windows', 'MacOS', 'Linux'],
packages=['opgee'],
entry_points={'console_scripts': ['opg = opgee.tool:main']},
install_requires=requirements,
include_package_data = True,
# extras_require=extras_requirements,
url='https://github.com/rjplevin/opgee',
download_url='https://github.com/arbrandt/OPGEEv4.git',
license='MIT License',
author='Richard Plevin',
author_email='[email protected]',
classifiers=[
# 'Development Status :: 5 - Production/Stable',
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
],
zip_safe=True,
)