-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from TNanukem/develop
Develop
- Loading branch information
Showing
3 changed files
with
58 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
Installation | ||
============ | ||
|
||
In order to install the sknet... | ||
In order to install the sknet you can use pip using the ``scikit-net`` name. | ||
|
||
.. code-block:: python | ||
pip install scikit-net |
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,31 @@ | ||
import pathlib | ||
from setuptools import setup, find_packages | ||
|
||
HERE = pathlib.Path(__file__).parent | ||
|
||
README = (HERE / "README.md").read_text() | ||
|
||
with open(HERE / 'requirements.txt') as f: | ||
required = f.read().splitlines() | ||
|
||
setup( | ||
name="scikit-net", | ||
version="0.0.1", | ||
description="Machine Learning in Complex Networks", | ||
long_description=README, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/TNanukem/sknet", | ||
download_url='https://github.com/TNanukem/sknet/archive/v-0.0.1.tar.gz', | ||
keywords=['Machine Learning', 'Complex Networks'], | ||
author="Tiago Toledo Jr", | ||
author_email="tiago.nanu@gmailcom", | ||
license="MIT", | ||
classifiers=[ | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
], | ||
packages=find_packages(exclude=("tests",)), | ||
include_package_data=True, | ||
install_requires=required, | ||
) |