forked from amrelhusseiny/drawio_network_plot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (22 loc) · 875 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
# setup.py
from setuptools import setup, find_packages
VERSION = '0.0.1'
DESCRIPTION = 'Plot Network using python , and output to DrawIO file'
with open('README.md') as readme_file:
LONG_DESCRIPTION = readme_file.read()
# Setting up
setup(
# the name must match the folder name 'verysimplemodule'
name="drawio_network_plot",
version="0.0.02 Beta",
author="Amr ElHusseiny",
author_email="[email protected]",
description=DESCRIPTION,
long_description= LONG_DESCRIPTION ,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=[], # No packages needed - all standard libraries
keywords=['python', 'first package'],
classifiers= ['Development Status :: 4 - Beta','Topic :: System :: Networking'],
python_requires='>=3.6',
)