-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 987 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 987 Bytes
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
from setuptools import find_packages
from setuptools import setup
setup(
name="plugin-tutorial",
packages=find_packages(),
version="1.0.0",
description="Plugin Tutorial",
author="Ching-Hwa Yu",
license='BSD',
author_email="chinghwayu@gmail.com",
url="https://github.com/chinghwayu/plugin_tutorial",
python_requires='>=3.6',
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Developers",
"Environment :: Console",
],
entry_points={
"plugin_tutorial": [
"relay1 = relay:RelayOne",
"relay2 = relay:RelayTwo",
],
},
)