-
Notifications
You must be signed in to change notification settings - Fork 82
/
setup.py
86 lines (64 loc) · 2.16 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
from setuptools import setup, Command
import sys
import warnings
warnings.filterwarnings("always", module=__name__)
def obtain_requirements(file_name):
with open(file_name) as fd_in:
for line in fd_in:
if '#' not in line:
yield line.strip()
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import subprocess
errno = subprocess.call([sys.executable, '-m', 'pytest'])
raise SystemExit(errno)
def read_injector_variable(name):
prefix = '%s = ' % (name,)
with open('injector/__init__.py') as f:
for line in f:
if line.startswith(prefix):
return line.replace(prefix, '').strip().strip("'")
raise AssertionError('variable %s not found' % (name,))
version = read_injector_variable('__version__')
version_tag = read_injector_variable('__version_tag__')
requirements = list(obtain_requirements('requirements.txt'))
requirements_dev = list(obtain_requirements('requirements-dev.txt'))
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
except ImportError:
warnings.warn('Could not locate pandoc, using Markdown long_description.', ImportWarning)
with open('README.md') as f:
long_description = f.read()
description = long_description.splitlines()[0].strip()
setup(
name='injector',
url='https://github.com/alecthomas/injector',
download_url='https://pypi.org/project/injector/',
version=version,
options=dict(egg_info=dict(tag_build=version_tag)),
description=description,
long_description=long_description,
license='BSD',
platforms=['any'],
packages=['injector'],
package_data={'injector': ['py.typed']},
author='Alec Thomas',
author_email='[email protected]',
cmdclass={'test': PyTest},
extras_require={'dev': requirements_dev},
keywords=[
'Dependency Injection',
'DI',
'Dependency Injection framework',
'Inversion of Control',
'IoC',
'Inversion of Control container',
],
install_requires=requirements,
)