-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (30 loc) · 1.08 KB
/
setup.py
File metadata and controls
36 lines (30 loc) · 1.08 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
from setuptools import setup, find_packages
from optimas_pp.__version__ import __version__
# Read long description
with open("README.md", "r") as fh:
long_description = fh.read()
def read_requirements():
with open('requirements.txt') as f:
return [line.strip() for line in f.readlines()]
# Main setup command
setup(name='optimas_pp',
version=__version__,
author='',
author_email='',
description='Post processing scripts for Optimas',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/delaossa/optimas_pp.git',
license='',
packages=find_packages('.'),
install_requires=read_requirements(),
scripts=['optimas_pp/plot_history.py',
'optimas_pp/plot_model.py',
'optimas_pp/show_sims.py'],
platforms='any',
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent"],
)