-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
63 lines (50 loc) · 2.01 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
58
59
60
61
62
63
import setuptools
from setuptools import setup
from ezmodel.version import __version__
__name__ = "ezmodel"
__author__ = "Julian Blank"
__url__ = ""
data = dict(
name=__name__,
version=__version__,
author=__author__,
url=__url__,
python_requires='>=3.6',
author_email="blankjul@msu.edu",
description="Machine Learning, Model, Surrogate, Metamodels, Response Surface",
license='Apache License 2.0',
keywords="model",
install_requires=['numpy', "pandas", "scipy", "scikit-learn", "pydacefit", "matplotlib"],
include_package_data=True,
platforms='any',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics'
]
)
# ---------------------------------------------------------------------------------------------------------
# OTHER METADATA
# ---------------------------------------------------------------------------------------------------------
# update the readme.rst to be part of setup
def readme():
with open('README.rst') as f:
return f.read()
def packages():
return ["ezmodel"] + ["ezmodel." + e for e in setuptools.find_packages(where='ezmodel')]
data['long_description'] = readme()
data['long_description_content_type'] = 'text/x-rst'
data['packages'] = packages()
# ---------------------------------------------------------------------------------------------------------
# SETUP
# ---------------------------------------------------------------------------------------------------------
setup(**data)