Skip to content

Commit 47dce2c

Browse files
committed
Fixed description
1 parent cbe9807 commit 47dce2c

File tree

1 file changed

+19
-13
lines changed

1 file changed

+19
-13
lines changed

setup.py

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
# The name of the project
2222
name = 'algorithmx'
2323

24+
# Load description
25+
with open('README.md', 'r') as fh:
26+
long_description = fh.read()
27+
2428
# Ensure a valid python version
2529
ensure_python('>=3.6')
2630

@@ -59,19 +63,21 @@
5963
)
6064

6165
setup_args = dict(
62-
name = name,
63-
description = 'A library for network visualization and algorithm simulation.',
64-
version = version,
65-
scripts = glob(pjoin('scripts', '*')),
66-
cmdclass = cmdclass,
67-
packages = find_packages(),
68-
author = 'Alex Socha',
69-
author_email = 'algorithmx.lib@gmail.com',
70-
url = 'https://github.com/algorithmx/algorithmx-python',
71-
license = 'MIT',
72-
platforms = ['Linux', 'MacOS', 'Windows'],
73-
keywords = ['Jupyter', 'Widgets', 'IPython'],
74-
classifiers = [
66+
name = name,
67+
description = 'A library for network visualization and algorithm simulation.',
68+
version = version,
69+
scripts = glob(pjoin('scripts', '*')),
70+
cmdclass = cmdclass,
71+
packages = find_packages(),
72+
author = 'Alex Socha',
73+
author_email = 'algorithmx.lib@gmail.com',
74+
long_description = long_description,
75+
long_description_content_type = 'text/markdown',
76+
url = 'https://github.com/algrx/algorithmx-python',
77+
license = 'MIT',
78+
platforms = ['Linux', 'MacOS', 'Windows'],
79+
keywords = ['Jupyter', 'Widgets', 'IPython'],
80+
classifiers = [
7581
'Intended Audience :: Developers',
7682
'Intended Audience :: Science/Research',
7783
'License :: OSI Approved :: BSD License',

0 commit comments

Comments
 (0)