File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed
Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 11[metadata]
2- description-file = README.md
2+ description-file = README.md
3+ long-description-content-type = text/markdown
Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ def read(fname):
66
77
88DESCRIPTION = "NeuroChaT: Neuron Characterisation Toolbox"
9- LONG_DESCRIPTION = """NeuroChaT is a neuroscience toolbox written in Python.
10- """
9+
10+ LONG_DESCRIPTION = read ( "README.md" )
1111
1212DISTNAME = 'neurochat'
1313MAINTAINER = 'Md Nurul Islam and Sean Martin'
1414MAINTAINER_EMAIL = 'martins7@tcd.ie'
1515URL = 'https://github.com/seankmartin/NeuroChaT'
16- DOWNLOAD_URL = 'https://github.com/seankmartin/NeuroChaT'
17- VERSION = '1.0 '
16+ DOWNLOAD_URL = 'https://github.com/seankmartin/NeuroChaT/archive/v1.1.1-alpha.tar.gz '
17+ VERSION = '1.1.1a0 '
1818
1919INSTALL_REQUIRES = [
2020 'PyPDF2 >= 1.26.0' ,
@@ -50,6 +50,7 @@ def read(fname):
5050 from setuptools import setup
5151 _has_setuptools = True
5252except ImportError :
53+ print ("Setup tools is preferred but not installed" )
5354 from distutils .core import setup
5455
5556if __name__ == "__main__" :
@@ -61,6 +62,7 @@ def read(fname):
6162 maintainer_email = MAINTAINER_EMAIL ,
6263 description = DESCRIPTION ,
6364 long_description = LONG_DESCRIPTION ,
65+ long_description_content_type = "text/markdown" ,
6466 license = read ('LICENSE' ),
6567 url = URL ,
6668 version = VERSION ,
You can’t perform that action at this time.
0 commit comments