forked from globality-corp/microcosm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (37 loc) · 1020 Bytes
/
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
#!/usr/bin/env python
from setuptools import find_packages, setup
project = "microcosm"
version = "2.4.1"
setup(
name=project,
version=version,
description="Microcosm - Simple microservice configuration",
author="Globality Engineering",
author_email="[email protected]",
url="https://github.com/globality-corp/microcosm",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
zip_safe=False,
python_requires=">=3.6",
keywords="microcosm",
install_requires=[
"contextdecorator>=0.10.0",
"inflection>=0.3.1",
"lazy>=1.3",
],
setup_requires=[
"nose>=1.3.6",
],
dependency_links=[
],
entry_points={
"microcosm.factories": [
"hello_world = microcosm.example:create_hello_world",
"opaque = microcosm.opaque:configure_opaque",
],
},
tests_require=[
"coverage>=3.7.1",
"PyHamcrest>=1.8.5",
],
)