forked from partofthething/physprog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.18 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
"""Setup.py script for physprog."""
from setuptools import setup, find_packages
with open('README.md') as f:
README = f.read()
setup(
name='physprog',
version='0.1',
description=('Physical Programming algorithm to robustly build aggregate'
'objective functions for multiobjective optimization'),
author='Nick Touran',
author_email='[email protected]',
url='https://github.com/partofthething/physprog',
packages=find_packages(),
license='Apache-2.0 t',
long_description=README,
install_requires=['numpy', 'scipy'],
keywords='physical programming multiobjective optimization aggregate',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
test_suite='tests',
include_package_data=True
)