Skip to content

Commit 6864a70

Browse files
committed
Update setup file
1 parent 04d97d2 commit 6864a70

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
[metadata]
2-
description-file = README.md
2+
description-file = README.md
3+
long-description-content-type = text/markdown

setup.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ def read(fname):
66

77

88
DESCRIPTION = "NeuroChaT: Neuron Characterisation Toolbox"
9-
LONG_DESCRIPTION = """NeuroChaT is a neuroscience toolbox written in Python.
10-
"""
9+
10+
LONG_DESCRIPTION = read("README.md")
1111

1212
DISTNAME = 'neurochat'
1313
MAINTAINER = 'Md Nurul Islam and Sean Martin'
1414
MAINTAINER_EMAIL = 'martins7@tcd.ie'
1515
URL = '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

1919
INSTALL_REQUIRES = [
2020
'PyPDF2 >= 1.26.0',
@@ -50,6 +50,7 @@ def read(fname):
5050
from setuptools import setup
5151
_has_setuptools = True
5252
except ImportError:
53+
print("Setup tools is preferred but not installed")
5354
from distutils.core import setup
5455

5556
if __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,

0 commit comments

Comments
 (0)