-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
54 lines (47 loc) · 1.48 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
# -*- coding: utf-8 -*-
import re
from setuptools import setup, find_packages
# from metamodeling import run
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
version = re.search(
'^__version__\s*=\s*\'(.*)\'',
open('metamodeling/version.py').read(),
re.M).group(1)
setup(
name='Metamodeling Framework',
version=version,
description='Generate metamodels based on arbitrary CSV files',
long_description=readme,
author='Nicholas Long',
author_email='nicholas.lee.long@gmail.com',
url='https://github.com/nllong/metamodeling-framework',
license=license,
python_requires='>=3',
# If updating here, then make sure to update requirements.txt file as well.
install_requires=[
'matplotlib==3.2.1',
'numpy==1.18.3',
'pandas==1.0.3',
'pyfiglet==0.8.post1',
'requests==2.23.0',
'scikit-learn==0.22.2',
'scipy==1.4.1',
'seaborn==0.11.',
'seaborn-qqplot==0.5.0',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(exclude=('tests', 'docs')),
scripts=['bin/metamodel.py'],
)