ircstates/setup.py

32 lines
1.1 KiB
Python
Raw Permalink Normal View History

2020-03-12 16:46:04 +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()
with open("requirements.txt", "r") as requirements_file:
install_requires = requirements_file.read().splitlines()
setuptools.setup(
name="ircstates",
version=version,
author="jesopo",
author_email="pip@jesopo.uk",
description="IRC client session state parsing library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jesopo/ircstates",
packages=setuptools.find_packages(),
package_data={"ircstates": ["py.typed"]},
2020-03-12 16:46:04 +00:00
classifiers=[
"Programming Language :: Python :: 3",
2020-04-01 00:59:20 +00:00
"License :: OSI Approved :: MIT License",
2020-03-12 16:46:04 +00:00
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Topic :: Communications :: Chat :: Internet Relay Chat"
],
2022-01-07 11:39:30 +00:00
python_requires='>=3.7',
2020-03-12 16:46:04 +00:00
install_requires=install_requires
)