-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
45 lines (43 loc) · 1.66 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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
README = f.read()
return README
setup(
name="pfevaluator",
version="1.1.0",
author="Thieu",
author_email="[email protected]",
description="pfevaluator: A library for evaluating performance metrics of Pareto fronts in multiple/many objective optimization problems",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/thieu1995/pfevaluator",
download_url="https://github.com/thieu1995/pfevaluator/archive/v1.1.0.zip",
packages=find_packages(),
include_package_data=True,
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: System :: Benchmark",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
install_requires=[
'numpy>=1.18.1',
'pygmo>=2.13.0'
],
python_requires='>=3.6',
)