-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·48 lines (47 loc) · 1.72 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
u"""Deprecation helper"""
from setuptools import setup
setup(
name='deprecat',
version='2.1.3',
url='https://github.com/mjhajharia/deprecat',
download_url='https://github.com/mjhajharia/deprecat/archive/refs/tags/v2.1.3.tar.gz',
license='MIT',
author='Meenal Jhajharia',
author_email='[email protected]',
description='Python @deprecat decorator to deprecate old python classes, functions or methods.',
long_description=__doc__,
long_description_content_type="text/x-rst",
keywords='deprecate,deprecated,deprecation,warning,warn,decorator',
packages=['deprecat'],
install_requires=['wrapt < 2, >= 1.10'],
zip_safe=False,
include_package_data=True,
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries :: Python Modules',
],
extras_require={
'dev': [
'tox',
'PyTest ; python_version >= "3.6"',
'PyTest < 5 ; python_version < "3.6"',
'PyTest-Cov ; python_version >= "3.6"',
'PyTest-Cov < 2.6 ; python_version < "3.6"',
'bump2version < 1',
'sphinx < 2',
]
},
python_requires='>=3.6',
)