-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (34 loc) · 1.16 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
34
35
36
37
38
39
from setuptools import find_packages
from setuptools import setup
with open("README.md") as readme_file:
readme = readme_file.read()
install_requirements = ["aiohttp"]
setup_requirements = ["setuptools_scm"]
setup(
author="Nikhil Dhandre",
author_email="nik.digitronik@live.com",
classifiers=[
"Natural Language :: English",
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Communications :: Chat",
"Topic :: Communications :: Chat :: Internet Relay Chat",
],
version="0.1",
python_requires=">=3.6",
description="IRC bot",
entry_points={"console_scripts": ["ircbot=src:main"]},
install_requires=install_requirements,
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
setup_requires=setup_requirements,
keywords="bot-irc",
name="bot-irc",
packages=find_packages(include=["bot-irc"]),
url="https://github.com/pythonpune/bot-irc",
license="GPLv3.0",
zip_safe=False,
)