1
0
Fork 0
This repository has been archived on 2023-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
dailyreleases/setup.py

37 lines
1.2 KiB
Python
Raw Normal View History

2018-07-31 17:34:45 +02:00
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
2022-06-12 18:45:25 +02:00
2018-07-31 17:34:45 +02:00
# To use a consistent encoding
from codecs import open
from os import path
2019-03-08 02:42:37 +01:00
from dailyreleases import __author__, __version__, __licence__
2018-07-31 17:34:45 +02:00
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="dailyreleases",
version=__version__,
description="A reddit bot that consolidates scene releases",
long_description=long_description,
long_description_content_type="text/markdown",
2022-06-12 18:45:25 +02:00
project_urls={"Source": "https://git.caspervk.net/caspervk/dailyreleases.git"},
2018-07-31 17:34:45 +02:00
author=__author__,
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
],
2019-03-08 19:25:48 +01:00
python_requires=">=3.7",
2018-07-31 17:34:45 +02:00
license=__licence__,
packages=find_packages(exclude=["tests"]),
include_package_data=True,
2022-06-12 18:45:25 +02:00
package_data={"dailyreleases": ["*.default"]},
install_requires=["praw==6.4.0", "beautifulsoup4==4.7.1"],
entry_points={"console_scripts": ["dailyreleases = dailyreleases.main:main"]},
)