mirror of
https://github.com/dgw/sopel-amatsukaze.git
synced 2025-06-21 06:27:20 +02:00
Initialize mostly-blank template for Yuuki to start building on
This commit is contained in:
commit
32fc93aee8
9 changed files with 152 additions and 0 deletions
25
setup.py
Executable file
25
setup.py
Executable file
|
@ -0,0 +1,25 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import print_function
|
||||
import os
|
||||
import sys
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
print('Sopel does not correctly load plugins installed with setup.py '
|
||||
'directly. Please use "pip install .", or add '
|
||||
'{}/sopel_amatsukaze to core.extra in your config.'
|
||||
.format(os.path.dirname(os.path.abspath(__file__))),
|
||||
file=sys.stderr)
|
||||
|
||||
with open('README.md') as readme_file:
|
||||
readme = readme_file.read()
|
||||
|
||||
with open('NEWS') as history_file:
|
||||
history = history_file.read()
|
||||
|
||||
|
||||
setup(
|
||||
long_description=readme + '\n\n' + history,
|
||||
long_description_content_type='text/markdown',
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue