-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 717 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(name='galm',
version='1.0.0',
description='Geodesic-Accelerated Levenberg-Marquardt',
long_description=""" """,
url='http://github.com/skachuck/giapy/',
author='Samuel B Kachuck',
author_email='sbk83@cornell.edu',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python 2',
'Programming Language :: Python 3',
'Topic :: Scientific/Engineering :: Physics'
],
keywords='optimization',
packages=find_packages(),
include_package_data=True,
entry_points={},
)