|
2 | 2 | # coding: utf-8
|
3 | 3 |
|
4 | 4 | import sys
|
5 |
| -from distutils.core import setup |
| 5 | +from setuptools import setup |
6 | 6 |
|
7 | 7 | if sys.version_info < (2, 7, 0) or (3, 0, 0) <= sys.version_info < (3, 3, 0):
|
8 | 8 | sys.stderr.write('ERROR: You need Python 2.7 or 3.3+ '
|
9 | 9 | 'to install the typing package.\n')
|
10 | 10 | exit(1)
|
11 | 11 |
|
12 |
| -version = '3.6.1' |
| 12 | +version = '3.6.2' |
13 | 13 | description = 'Type Hints for Python'
|
14 | 14 | long_description = '''\
|
15 | 15 | Typing -- Type Hints for Python
|
16 | 16 |
|
17 | 17 | This is a backport of the standard library typing module to Python
|
18 |
| -versions older than 3.6. |
| 18 | +versions older than 3.5. |
19 | 19 |
|
20 | 20 | Typing defines a standard notation for Python function and variable
|
21 | 21 | type annotations. The notation can be used for documenting code in a
|
|
35 | 35 | 'Programming Language :: Python :: 2.7',
|
36 | 36 | 'Programming Language :: Python :: 3.3',
|
37 | 37 | 'Programming Language :: Python :: 3.4',
|
38 |
| - 'Programming Language :: Python :: 3.5', |
39 |
| - 'Programming Language :: Python :: 3.6', |
40 | 38 | 'Topic :: Software Development',
|
41 | 39 | ]
|
42 | 40 |
|
43 | 41 | setup(name='typing',
|
44 | 42 | version=version,
|
45 | 43 | description=description,
|
46 | 44 | long_description=long_description,
|
47 |
| - author='Guido van Rossum, Jukka Lehtosalo, Łukasz Langa', |
| 45 | + author='Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Ivan Levkivskyi', |
48 | 46 |
|
49 | 47 | url='https://docs.python.org/3/library/typing.html',
|
50 | 48 | license='PSF',
|
|
0 commit comments