forked from FOSSBots/MirahezeBots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (27 loc) · 1.08 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
"""Controls the setup of the package by setuptools/pip."""
from MirahezeBots.version import VERSION
from setuptools import find_packages, setup
with open('README.md') as readme_file:
readme = readme_file.read()
with open('CHANGELOG.md') as history_file:
history = history_file.read()
with open('requirements.txt') as requirements_file:
requirements = list(requirements_file.readlines())
with open('dev-requirements.txt') as dev_requirements_file:
dev_requirements = list(dev_requirements_file.readlines())
setup(
name='MirahezeBot_Plugins',
version=VERSION,
description='Sopel Plugins for Miraheze Bots',
long_description=readme + '\n\n' + history,
long_description_content_type='text/markdown', # This is important!
author='MirahezeBot Contributors',
author_email='[email protected]',
url='https://github.com/MirahezeBots/MirahezeBots',
packages=find_packages('.'),
include_package_data=True,
install_requires=requirements,
tests_require=dev_requirements,
test_suite='tests',
license='Eiffel Forum License, version 2',
)