-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (29 loc) · 870 Bytes
/
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
from setuptools import setup
setup(
name='backports.inspect',
version='0.0.3',
author='Tripp Lilley',
author_email='[email protected]',
url='https://github.com/agoraplex/backports.inspect',
license='BSD',
description='Backport (some) Python 3 `inspect` module features to 2.7 (extending aliles/funcsigs)',
long_description=open('README.rst').read(),
packages=[
'backports',
],
namespace_packages=[
'backports',
],
install_requires=[
'funcsigs>=0.4',
],
tests_require=[
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)