-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (31 loc) · 1.51 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
import os
from setuptools import setup, find_packages
with open("README.md", "r") as fl:
long_description = fl.read()
def parse_requirements(file):
required_packages = []
with open(os.path.join(os.path.dirname(__file__), file)) as req_file:
for line in req_file:
required_packages.append(line.strip())
return required_packages
setup(name='symbolic-regression-toolkit',
version='1.2.5',
url='https://github.com/smeznar/SymbolicRegressionToolkit',
author='Sebastian Mežnar',
author_email='smeznar@gmail.com',
license='GNU General Public License v3.0',
keywords=["symbolic regression", "equation discovery", "parameter estimation", "machine learning"],
description='Symbolic Regression/Equation Discovery Toolkit',
long_description=long_description,
long_description_content_type='text/markdown',
py_modules=['SRToolkit'],
packages=find_packages(),
classifiers=['Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
"Topic :: Scientific/Engineering",
'Topic :: Scientific/Engineering :: Artificial Intelligence',
"Topic :: Scientific/Engineering :: Mathematics"],
install_requires=parse_requirements('requirements.txt'))