forked from gugarosa/opytimizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 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
39
40
41
from setuptools import find_packages, setup
with open('README.md', 'r') as f:
long_description = f.read()
setup(name='opytimizer',
version='2.1.3',
description='Nature-Inspired Python Optimizer',
long_description=long_description,
long_description_content_type='text/markdown',
author='Gustavo Rosa',
url='https://github.com/gugarosa/opytimizer',
license='GPL-3.0',
install_requires=['coverage>=5.3',
'matplotlib>=3.3.2',
'numpy>=1.19.2',
'opytimark>=1.0.6',
'pylint>=2.6.0',
'pytest>=6.1.0',
'tqdm>=4.50.0'
],
extras_require={
'tests': ['coverage',
'pytest',
'pytest-pep8',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages())