-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (31 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
with open("README.md", "r") as f:
README_TEXT = f.read()
setup(
name="stdog",
version="v1.0.4",
packages=find_packages(exclude=["build", ]),
long_description=README_TEXT,
long_description_content_type="text/markdown",
install_requires=["tensorflow", "scipy", "numpy", "emate"],
include_package_data=True,
license="MIT",
description="Structure and Dynamics on Graphs",
author_email="[email protected]",
author="Bruno Messias; Thomas K. Peron",
download_url="https://github.com/stdogpkg/stdog/archive/v1.0.4.tar.gz",
keywords=[
"gpu", "science", "complex-networks", "graphs", "dynamics",
"tensorflow", "kuramoto"
],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Information Analysis"
],
url="https://github.com/stdogpkg/stdog"
)