You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from pkg_resources import VersionConflict, require
from setuptools import setup, find_packages
try:
require('setuptools>=38.3')
except VersionConflict:
print("Error: version of setuptools is too old (<38.3)!")
sys.exit(1)
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="pycoornet",
version="0.6.0",
description="Using Python Given a set of URLs, this packages detects coordinated link sharing behavior on social media and outputs the network of entities that performed such behaviour.",
long_description=long_description,
long_description_content_type="text/markdown",
author = 'Camilo Andres Soto Montoya, Jose R. Zapata',