-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
31 lines (30 loc) · 944 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
29
30
31
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="pycsa",
version="0.1.3",
description="Python implementation of coupled simulated annealing (CSA)",
long_description=open("README.rst").read(),
author="Boudhayan Banerjee, Evan 'Pete' Walsh",
author_email="[email protected], [email protected]",
url="https://github.com/structurely/csa",
packages=["pycsa"],
package_dir={"pycsa": "csa"},
keywords=[
"csa",
"sa",
"simulated annealing",
"annealing",
"coupled simulated annealing",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering",
],
)