forked from ivankorobkov/python-inject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (30 loc) · 1.08 KB
/
setup.py
File metadata and controls
39 lines (30 loc) · 1.08 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
# encoding: utf-8
import sys
from setuptools import setup
def read_description():
with open('README.md', 'r', encoding='utf-8') as f:
return f.read()
setup(
name='Inject',
version='4.3.1',
url='https://github.com/ivankorobkov/python-inject',
license='Apache License 2.0',
author='Ivan Korobkov',
author_email='ivan.korobkov@gmail.com',
description='Python dependency injection framework',
long_description=read_description(),
long_description_content_type="text/markdown",
packages=['inject'],
package_data={'inject': ['py.typed']},
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules']
)