|
@@ -3,8 +3,8 @@ from setuptools.command.install import install
|
3
|
3
|
from setuptools.dist import Distribution
|
4
|
4
|
import sys
|
5
|
5
|
|
6
|
|
-if sys.version_info < (3,0):
|
7
|
|
- sys.exit('Sorry, Python < 3.0 is not supported')
|
|
6
|
+if sys.version_info < (3,6):
|
|
7
|
+ sys.exit('Sorry, Python < 3.6 is not supported')
|
8
|
8
|
|
9
|
9
|
class BinaryDistribution(Distribution):
|
10
|
10
|
"""Distribution which always forces a binary package with platform name"""
|
|
@@ -21,7 +21,7 @@ class InstallPlatlib(install):
|
21
|
21
|
|
22
|
22
|
setup(
|
23
|
23
|
name = 'pyLemma',
|
24
|
|
- version = '0.0.11',
|
|
24
|
+ version = '0.0.13',
|
25
|
25
|
author = 'Trevor Irons and others',
|
26
|
26
|
author_email = 'Trevor.Irons@lemmasoftware.org',
|
27
|
27
|
description = 'A short description of the app/lib',
|