Michel Roux
4d0784112e
All checks were successful
continuous-integration/drone/push Build is passing
27 lines
778 B
Python
27 lines
778 B
Python
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,
|
|
include_package_data=True,
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires='>=3.6',
|
|
)
|