-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
43 lines (38 loc) · 1.16 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
36
37
38
39
40
41
42
43
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
readme = ''
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, 'README.rst')
if os.path.exists(readme_path):
with open(readme_path, 'rb') as stream:
readme = stream.read().decode('utf8')
setup(
long_description=readme,
name='simplug',
version='0.0.6',
description='A simple plugin system for python with async hooks supported',
python_requires='==3.*,>=3.7.0',
project_urls={
"homepage": "https://github.com/pwwang/simplug",
"repository": "https://github.com/pwwang/simplug"
},
author='pwwang',
author_email='[email protected]',
license='MIT',
packages=['examples', 'examples.complete'],
package_dir={"": "."},
package_data={
"examples.complete": [
"plugin/simplug_complete_example_plugin.egg-info/*.txt"
]
},
install_requires=['diot'],
extras_require={"dev": ["pytest", "pytest-cov"]},
)