-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 843 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
def readme():
with open('README.rst') as f:
return f.read()
setup(name='pynsga2lib',
version='1.0',
description='Libraries for performing nsga2 calibration.',
long_description=readme(),
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: Beta"
"Intended Audience :: Science/Research",
"Natural Language :: English",
],
url='https://github.com/mehmetbercan/pynsga2',
author='Mehmet B. Ercan',
author_email='[email protected]',
license='MIT',
packages=['pynsga2lib'],
install_requires=['pynsga2lib','numpy'],
include_package_data=True
)