Skip to content
This repository has been archived by the owner on Nov 24, 2019. It is now read-only.

Commit

Permalink
Test readthedocs YML file, setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sco1 committed Sep 19, 2018
1 parent 4af03c7 commit 6b9e586
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
10 changes: 10 additions & 0 deletions readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
formats: []

build:
image: latest

python:
version: 3.6
pip_install: true
extra_requirements:
- docs
35 changes: 35 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
from setuptools import setup, find_packages

readme = ''
with open('README.md') as f:
readme = f.read()

extras_require = {
'docs': [
'sphinx>=1.8.0',
'sphinxcontrib-asyncio',
'sphinxcontrib-websupport',
]
}

setup(name='wumbot',
author='sco1',
url='https://github.com/Wumbology-Inc/Wumbot',
version='v0.7.2',
packages=['wumbot'],
description='A Python Discord bot for Wumbology, Inc.',
long_description=readme,
include_package_data=True,
extras_require=extras_require,
python_requires='>=3.6.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet',
'Topic :: Utilities',
]
)

0 comments on commit 6b9e586

Please sign in to comment.