-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.35 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
import sys, setuptools
if sys.version_info[0] < 3:
sys.stdout.write("honto requires Python 3 or higher. Your Python your current Python version is {}.{}.{}"
.format(sys.version_info[0], sys.version_info[1], sys.version_info[2]))
setuptools.setup(name="honto",
version="0.1.1",
author="Fabio Cumbo",
author_email="[email protected]",
url="http://github.com/cumbof/honto",
license="LICENSE",
packages=setuptools.find_packages(),
entry_points={
"console_scripts": ["honto = honto.honto:main"]
},
description="A novel method for assessing and measuring homophily in networks",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[
"tqdm",
"pandas",
"networkx",
"seaborn",
"matplotlib"
],
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
])