-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsetup.py
49 lines (47 loc) · 1.47 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
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="opytimizer",
version="3.1.1",
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="Apache 2.0",
install_requires=[
"coverage>=5.5",
"dill>=0.3.4",
"matplotlib>=3.3.4",
"networkx>=2.5.1",
"numpy>=1.19.5",
"opytimark>=1.0.7",
"pre-commit>=2.17.0",
"pylint>=2.7.2",
"pytest>=6.2.2",
"tqdm>=4.49.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 :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(),
)