-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use setup * bump version numbers * Update index.rst Co-authored-by: Neil Wu <[email protected]>
- Loading branch information
Showing
7 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
from setuptools import setup | ||
import re | ||
|
||
__version__ = re.findall( | ||
r"""__version__ = ["']+([0-9\.]*)["']+""", | ||
open('multipoint/__init__.py').read(), | ||
)[0] | ||
|
||
setup(name='multipoint', | ||
version=__version__, | ||
|
||
|
||
description="Provides utilities to facilitates distributed multipoint optimization with the MACH framework.", | ||
long_description="""Please see the [documentation](https://mdolab-multipoint.readthedocs-hosted.com) for API documentation. | ||
To locally build the documentation, enter the `doc` folder and enter `make html` in terminal. | ||
You can then view the built documentation in the `_build` folder. | ||
""", | ||
long_description_content_type="text/markdown", | ||
keywords='multi-point optimization', | ||
author='', | ||
author_email='', | ||
url='https://github.com/mdolab/multipoint', | ||
license='Apache License Version 2.0', | ||
packages=[ | ||
'multipoint', | ||
], | ||
install_requires=[ | ||
'numpy>=1.16.4', | ||
'mpi4py>=3.0.2' | ||
], | ||
classifiers=[ | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python"] | ||
) |
File renamed without changes.