-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.03 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 setuptools import setup, find_packages
with open('README.md', 'r') as readme:
README = readme.read()
setup(
name='pypendency',
version='0.6.0',
packages=find_packages('src'),
package_dir={'': 'src'},
author='Fever',
author_email='[email protected]',
description='A dependency injection tool for python',
long_description=README,
long_description_content_type='text/markdown',
license='MIT License',
url='https://github.com/Feverup/pypendency',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Typing :: Typed',
],
python_requires='>=3.8',
install_requires=[
'pyyaml',
],
include_package_data=True,
)