irctokens/setup.py

29 lines
921 B
Python
Raw Normal View History

2020-03-11 12:35:52 +00:00
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("VERSION", "r") as version_file:
version = version_file.read().strip()
setuptools.setup(
name="irctokens",
version=version,
author="jesopo",
author_email="pip@jesopo.uk",
description="RFC1459 and IRCv3 protocol tokeniser",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jesopo/irctokens",
packages=setuptools.find_packages(),
package_data={"irctokens": ["py.typed"]},
2020-03-11 12:35:52 +00:00
classifiers=[
"Programming Language :: Python :: 3",
2020-03-23 13:14:57 +00:00
"License :: OSI Approved :: MIT License",
2020-03-11 12:35:52 +00:00
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Topic :: Communications :: Chat :: Internet Relay Chat"
],
2020-03-12 16:44:25 +00:00
python_requires='>=3.6'
2020-03-11 12:35:52 +00:00
)