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" )