-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (32 loc) · 917 Bytes
/
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
#!/usr/bin/env python3
from setuptools import setup
from fuo_TEMPLATE import __version__
setup(
name='fuo_TEMPLATE',
version=__version__,
description='feeluown TEMPLATE plugin',
author='AUTHOR',
author_email='EMAIL',
# packages=[
# 'fuo_TEMPLATE',
# ],
py_modules=['fuo_TEMPLATE'],
url='https://github.com/feeluown/feeluown-TEMPLATE',
keywords=['feeluown', 'plugin', 'TEMPLATE'],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
],
install_requires=[
'feeluown>=3.7.11',
],
entry_points={
'fuo.plugins_v1': [
'TEMPLATE = fuo_TEMPLATE',
]
},
)