This repository has been archived on 2023-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
PyNyaaTa/setup.py

27 lines
778 B
Python
Raw Normal View History

2020-04-09 17:36:12 +00:00
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name="PyNyaaTa",
version="0.0.1",
author="Xéfir Destiny",
author_email="xefir@crystalyx.net",
description="𝛑 😼 た, Xéfir's personal animes torrent search engine",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://git.crystalyx.net/Xefir/PyNyaaTa",
packages=find_packages(),
install_requires=requirements,
2020-04-09 18:32:58 +00:00
include_package_data=True,
2020-04-09 17:36:12 +00:00
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
2020-04-09 19:32:03 +00:00
python_requires='>=3.5',
2020-04-09 17:36:12 +00:00
)