-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Simplified package structure as it's only one file so moved everything
in the root directory. * Updated setup.py to make sure pip installation works * linted files
- Loading branch information
Showing
4 changed files
with
24 additions
and
18 deletions.
There are no files selected for viewing
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,14 +1,25 @@ | ||
from setuptools import setup | ||
import setuptools | ||
|
||
setup(name='frechetdist', | ||
version='0.3', | ||
description='Calculate discrete Frechet distance', | ||
url='https://github.com/spiros/discrete_frechet', | ||
author='Spiros Denaxas', | ||
author_email='[email protected]', | ||
license='Apache License 2.0', | ||
packages=['frechetdist'], | ||
install_requires=[ | ||
'numpy', | ||
], | ||
zip_safe=False) | ||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name='frechetdist', | ||
version='0.6', | ||
description='Calculate discrete Frechet distance', | ||
url='https://github.com/spiros/discrete_frechet', | ||
author='Spiros Denaxas', | ||
author_email='[email protected]', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
license='Apache License 2.0', | ||
py_modules=['frechetdist'], | ||
install_requires=[ | ||
'numpy>1.0', | ||
], | ||
zip_safe=False, | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: OS Independent" | ||
] | ||
) |
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