From 3bab20f9c334c1913b27c701a6f2355dad612b31 Mon Sep 17 00:00:00 2001
From: devmessias <messias.physics@gmail.com>
Date: Mon, 2 Sep 2019 18:53:08 -0300
Subject: [PATCH] Corrects package info

---
 requeriments.txt |  3 +++
 setup.py         | 24 +++++++++++-------------
 2 files changed, 14 insertions(+), 13 deletions(-)

diff --git a/requeriments.txt b/requeriments.txt
index e69de29..5af4e39 100644
--- a/requeriments.txt
+++ b/requeriments.txt
@@ -0,0 +1,3 @@
+scipy
+numpy
+tensorflow
diff --git a/setup.py b/setup.py
index 5ef19d1..b005cac 100644
--- a/setup.py
+++ b/setup.py
@@ -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="messias.physics@gmail.com",
     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"
 )