-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·44 lines (38 loc) · 1.03 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·44 lines (38 loc) · 1.03 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
#!/usr/bin/env python
# coding=utf-8
"""Project setup."""
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
REQUIREMENTS = [
]
TEST_REQUIREMENTS = [
'click==4.0',
'pylama==6.3.1',
'pytest==2.7.0',
'pytest-reorder==0.1.0',
'mock==1.0.1',
'port-for==0.3.1',
]
setup(
name='spawn_and_check',
version='0.0.1',
description="Spawn a process and wait until it's ready. So-called 'Executor'.",
long_description=README,
author='Michał Pawłowski',
author_email='@'.join(['unittestablecode', 'gmail.com']), # Secure against bots.
url='',
license="MIT",
install_requires=REQUIREMENTS,
tests_require=TEST_REQUIREMENTS,
extras_require={'tests': TEST_REQUIREMENTS},
keywords=['executor'],
packages=find_packages(),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
entry_points={},
)