-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
26 lines (24 loc) · 894 Bytes
/
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
from setuptools import setup, find_packages
with open('README.rst') as file:
long_description = file.read()
setup(name='PyDE',
version='2.0',
description='Differential Evolution in Python',
long_description=long_description,
author='Hannu Parviainen',
author_email='[email protected]',
url='https://github.com/hpparvi/PyDE',
package_dir={'pyde':'src'},
packages=['pyde'],
install_requires=["numpy", "numba"],
license='GPLv2',
classifiers=[
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python"
]
)