|
21 | 21 | # The name of the project |
22 | 22 | name = 'algorithmx' |
23 | 23 |
|
| 24 | +# Load description |
| 25 | +with open('README.md', 'r') as fh: |
| 26 | + long_description = fh.read() |
| 27 | + |
24 | 28 | # Ensure a valid python version |
25 | 29 | ensure_python('>=3.6') |
26 | 30 |
|
|
59 | 63 | ) |
60 | 64 |
|
61 | 65 | 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 = [ |
75 | 81 | 'Intended Audience :: Developers', |
76 | 82 | 'Intended Audience :: Science/Research', |
77 | 83 | 'License :: OSI Approved :: BSD License', |
|
0 commit comments