Skip to content

Commit

Permalink
Corrects package info
Browse files Browse the repository at this point in the history
  • Loading branch information
devmessias committed Sep 2, 2019
1 parent 9641f1e commit 3bab20f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
3 changes: 3 additions & 0 deletions requeriments.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
scipy
numpy
tensorflow
24 changes: 11 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,33 +1,31 @@
from setuptools import setup, find_packages

readme = open('README', 'r')
readme = open('README.md', 'r')
README_TEXT = readme.read()
readme.close()

setup(
name="stDoG",
version="0.0.1",
name="stdog",
version="1.0.1",
packages=find_packages(exclude=["build", ]),
long_description=README_TEXT,
# install_requires=["tensorflow", "scipy", "numpy"],
install_requires=["tensorflow", "scipy", "numpy"],
include_package_data=True,
license="AGPLv3",
license="MIT",
description="Structure and Dynamics on Graphs",
author_email="[email protected]",
author="Bruno Messias; Thomas K. Peron",
# download_url=
# "https://github.com/devmessias/phd_tkuramoto/archive/0.0.1.tar.gz",
download_url="https://github.com/stdogpkg/stdog/archive/v1.0.1.tar.gz",
keywords=[
"gpu", "science", "complex-networks", "graphs", "dynamics",
"tensorflow"
"tensorflow", "kuramoto"
],
classifiers=[
"Development Status :: 4 - Beta",
("License :: OSI Approved :: GNU Affero General Public License v3 or",
"later (AGPLv3+)"),
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Text Processing :: Markup :: LaTeX",
"Programming Language :: Python :: 3",
"Topic :: Physics :: Mathematics :: SCIENTIFIC/ENGINEERING",
],
url="https://github.com/devmessias/phd_tkuramoto"
url="https://github.com/stdogpkg/stdog"
)

0 comments on commit 3bab20f

Please sign in to comment.