-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 961 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
# allow setup.py to be ran from anywhere
os.chdir(os.path.dirname(os.path.abspath(__file__)))
setup(
name="diay",
version="0.1.3",
license="MIT",
description="diay - a dependency injection library",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Andreas Lutro",
author_email="[email protected]",
url="https://github.com/anlutro/diay.py",
packages=find_packages(include=("diay", "diay.*")),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords=["dependency injection", "inversion of control"],
)