-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 891 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
from setuptools import setup
# load the README file and use it as the long_description for PyPI
with open("README.md", "r") as f:
readme = f.read()
setup(
name="rInject",
description="A flexible (annotations or keys) but simple dependency injection library for Python 3.",
long_description=readme,
long_description_content_type="text/markdown",
version="0.1.1",
author="Steve McCartney",
author_email="[email protected]",
url="https://github.com/stevemccartney/rinject",
packages=["rinject"],
include_package_data=True,
python_requires=">=3.8.*",
extras_require={"dev": ["pytest"]},
license="Apache 2.0",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
],
keywords="dependency injection inject injector di dic",
)