-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 1.1 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
from pathlib import Path
from setuptools import find_packages, setup
def main():
setup(
name="nameko-injector",
description="Injector support in nameko",
long_description=Path("README.rst").read_text(),
version="1.1.2",
url="https://github.com/signalpillar/nameko-injector",
license="MIT",
platforms=["linux", "osx"],
author="Volodymyr Vitvitskyi",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Programming Language :: Python",
],
packages=find_packages(),
py_modules=["nameko_injector"],
install_requires=["nameko>=2.0.0", "injector>=0.18.0"],
)
if __name__ == "__main__":
main()