forked from hpparvi/PyDE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 978 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
27
28
from numpy.distutils.core import setup, Extension
from numpy.distutils.misc_util import Configuration
import distutils.sysconfig as ds
with open('README.rst') as file:
long_description = file.read()
setup(name='PyDE',
version='1.0.1',
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"],
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"
]
)