-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update in order to tranform in pip like module
- Loading branch information
1 parent
ac247f5
commit 150fefb
Showing
8 changed files
with
59 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
__name__ = "bregman_clustering" | ||
|
||
__all__ = [] | ||
|
||
from . import python | ||
__all__.extend(python.__all__) | ||
from .python import * |
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,5 @@ | ||
__all__ = [] | ||
|
||
from . import cluster_algorithms | ||
__all__.extend( cluster_algorithms.__all__ ) | ||
from .cluster_algorithms import * |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Imports | ||
from setuptools import setup, find_packages | ||
|
||
# Loading README file | ||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name = 'bregmanclustering', | ||
version = '0.3', | ||
license='GPL-3.0', | ||
description = 'A framework to use Bregman Divergence', | ||
long_description = long_description, | ||
long_description_content_type="text/markdown", | ||
packages=find_packages(), | ||
author = 'Micael Veríssimo de Araújo', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/micaelverissimo/bregmannclustering', | ||
keywords = ['framework', 'information-geometry', 'machine-learning', 'ai', 'plotting', 'data-visualization'], | ||
install_requires = [ | ||
'numpy', | ||
'six>=1.12.0', | ||
'scipy==1.4.1', | ||
'future', | ||
'sklearn', | ||
'scikit-learn>=0.22.1', | ||
'matplotlib>=3.1.3', | ||
'seaborn>=0.10.0', | ||
], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
], | ||
) |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
rm dist/* | ||
python3 setup.py sdist | ||
twine upload dist/* |