-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 757 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 757 Bytes
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
import sys
from setuptools import setup, find_packages
try:
# HACK: Avoid "TypeError: 'NoneType' object is not callable"
# Related to issue http://bugs.python.org/issue15881
# https://hg.python.org/cpython/rev/0a58fa8e9bac
import multiprocessing
except ImportError:
pass
setup(
author='Telefonica Digital',
author_email='connect-dev@tid.es',
description='Dependency injection library',
include_package_data=True,
install_requires=[],
name='di-py',
packages=find_packages(exclude=['test*']),
url='https://www.github.com/telefonicaid/di-py',
setup_requires=['pytest-runner'] if 'test' in sys.argv else [],
tests_require=['pytest', 'pyshould'],
version='1.1.1',
zip_safe=False,
)