-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·48 lines (44 loc) · 1.42 KB
/
setup.py
File metadata and controls
executable file
·48 lines (44 loc) · 1.42 KB
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
from setuptools import setup
with open("README.rst") as fh:
long_description = fh.read()
tests_deps = [
'repeated_test>=2.2.1',
'sphinx',
'mock',
'coverage',
]
setup(
name='sigtools',
description="Utilities for working with inspect.Signature objects.",
long_description=long_description,
long_description_content_type='text/x-rst',
license='MIT',
author='Yann Kaiser',
author_email='kaiser.yann@gmail.com',
url='https://sigtools.readthedocs.io/',
packages=['sigtools', 'sigtools.tests'],
tests_require=tests_deps,
install_requires=['attrs'],
python_requires='>=3.6',
extras_require={
'test': tests_deps,
'tests': tests_deps,
},
test_suite='unittest2.collector',
keywords='introspection signature',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'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 :: Libraries :: Python Modules',
],
)