-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·30 lines (29 loc) · 1.08 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='andi',
version='0.6.0',
description='Library for annotation-based dependency injection',
long_description=open('README.rst').read() + "\n\n" + open('CHANGES.rst').read(),
long_description_content_type='text/x-rst',
author='Mikhail Korobov',
author_email='[email protected]',
url='https://github.com/scrapinghub/andi',
packages=find_packages(exclude=['tests']),
package_data={"andi": ["py.typed"]},
zip_safe=False,
python_requires='>=3.9',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
)