-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
44 lines (37 loc) · 1.11 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
readme = open(os.path.join(here, 'README.md')).read()
requires = [
'pytest',
'six'
]
def get_version():
p = os.path.join(os.path.dirname(os.path.abspath(__file__)), "VERSION.txt")
with open(p) as f:
return f.read().strip()
setup(
name='lovely-pytest-docker',
version=get_version(),
description='Pytest testing utilities with docker containers.',
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
],
author='Lovely Systems',
author_email='[email protected]',
url='https://github.com/lovelysystems/lovely-pytest-docker',
keywords='pytest testing docker compose',
namespace_packages=['lovely'],
packages=find_packages('src'),
package_dir={'': 'src'},
zip_safe=False,
include_package_data=True,
install_requires=requires,
entry_points={
'pytest11': [
'lovely_pytest_docker = lovely.pytest.docker.compose',
],
},
)