This repository has been archived by the owner on Mar 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·50 lines (46 loc) · 1.55 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Install typingplus."""
from __future__ import unicode_literals
from setuptools import setup
setup(
name='typingplus',
use_scm_version=True,
description='An enhanced typing library with casting and validation.',
long_description=open('README.rst').read(),
author='Melissa Nuño',
author_email='dangle@contains.io',
url='https://github.com/contains-io/typingplus',
keywords=['typing', 'schema' 'validation', 'types', 'pep484',
'annotations', 'type comments'],
license='MIT',
py_modules=['typingplus'],
install_requires=[
'typing >= 3.5.3 ; python_version < "3.7.0"',
'typing_extensions >= 3.6.2 ; python_version < "3.7.0"',
'six >= 1.10.0'
],
setup_requires=[
'six >= 1.10.0',
'packaging',
'appdirs',
'pytest-runner',
'setuptools_scm',
],
tests_require=['pytest >= 3.2'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'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',
'Intended Audience :: Developers',
'Topic :: Software Development',
]
)