|
@@ -19,13 +19,16 @@ class InstallPlatlib(install):
|
19
|
19
|
if self.distribution.has_ext_modules():
|
20
|
20
|
self.install_lib = self.install_platlib
|
21
|
21
|
|
|
22
|
+with open("README.md", "r") as fh:
|
|
23
|
+ long_description = fh.read()
|
|
24
|
+
|
22
|
25
|
setup(
|
23
|
26
|
name = 'pyLemma',
|
24
|
27
|
version = '0.4.0',
|
25
|
28
|
author = 'Trevor Irons and others',
|
26
|
29
|
author_email = 'Trevor.Irons@lemmasoftware.org',
|
27
|
|
- description = 'A short description of the app/lib',
|
28
|
|
- long_description = 'A longer one',
|
|
30
|
+ description = 'PyLemma is a wrapper to Lemma',
|
|
31
|
+ long_description = long_description,
|
29
|
32
|
classifiers=[
|
30
|
33
|
'Development Status :: 3 - Alpha',
|
31
|
34
|
'Intended Audience :: Developers',
|