You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.4 KiB
46 lines
1.4 KiB
# NOTE: This package must support Python 2.7 in addition to Python 3.x |
|
|
|
from setuptools import setup |
|
|
|
version = '0.5.0-dev' |
|
description = 'Experimental type system extensions for programs checked with the mypy typechecker.' |
|
long_description = ''' |
|
Mypy Extensions |
|
=============== |
|
|
|
The "mypy_extensions" module defines experimental extensions to the |
|
standard "typing" module that are supported by the mypy typechecker. |
|
'''.lstrip() |
|
|
|
classifiers = [ |
|
'Development Status :: 2 - Pre-Alpha', |
|
'Environment :: Console', |
|
'Intended Audience :: Developers', |
|
'License :: OSI Approved :: MIT License', |
|
'Programming Language :: Python :: 2', |
|
'Programming Language :: Python :: 2.7', |
|
'Programming Language :: Python :: 3', |
|
'Programming Language :: Python :: 3.4', |
|
'Programming Language :: Python :: 3.5', |
|
'Programming Language :: Python :: 3.6', |
|
'Programming Language :: Python :: 3.7', |
|
'Programming Language :: Python :: 3.8', |
|
'Programming Language :: Python :: 3.9', |
|
'Topic :: Software Development', |
|
] |
|
|
|
setup( |
|
name='mypy_extensions', |
|
version=version, |
|
description=description, |
|
long_description=long_description, |
|
author='The mypy developers', |
|
author_email='jukka.lehtosalo@iki.fi', |
|
url='https://github.com/python/mypy_extensions', |
|
license='MIT License', |
|
py_modules=['mypy_extensions'], |
|
classifiers=classifiers, |
|
install_requires=[ |
|
'typing >= 3.5.3; python_version < "3.5"', |
|
], |
|
)
|
|
|