-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1017 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="vinal",
version="0.0.5",
author="Henry Robbins",
author_email="hw.robbins@gmail.com",
description="A Python package for visualizing graph algorithms.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/henryrobbins/tmp.git",
packages=find_packages(),
include_package_data=True,
license="Creative Commons Attribution-NonCommercial-ShareAlike 4.0. https://creativecommons.org/licenses/by-nc-sa/4.0/",
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
install_requires=[
'numpy>=1.19',
'pandas>=1.2',
'networkx>=3',
'bokeh>=3',
'typing>=3.7',
],
python_requires='>=3.8',
)