2020-04-10 10:42:39 +00:00
|
|
|
from datetime import datetime
|
|
|
|
|
2020-04-09 17:36:12 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2020-04-26 12:09:01 +00:00
|
|
|
with open("README.md") as readme_file:
|
|
|
|
long_description = readme_file.read()
|
2020-04-09 17:36:12 +00:00
|
|
|
|
2020-04-26 12:09:01 +00:00
|
|
|
with open("requirements.txt") as requirements_file:
|
|
|
|
requirements = requirements_file.read().splitlines()
|
2020-04-09 17:36:12 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name="PyNyaaTa",
|
2020-04-10 10:42:39 +00:00
|
|
|
version=datetime.now().strftime("%Y%m%d%H%M"),
|
2020-04-09 17:36:12 +00:00
|
|
|
author="Xéfir Destiny",
|
|
|
|
author_email="xefir@crystalyx.net",
|
2020-05-16 17:19:31 +00:00
|
|
|
description="π 😼た, Xéfir's personal animes torrent search engine",
|
2020-04-09 17:36:12 +00:00
|
|
|
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-26 11:55:18 +00:00
|
|
|
entry_points={
|
2020-04-26 12:09:01 +00:00
|
|
|
"console_scripts": ["pynyaata=pynyaata:run"],
|
2020-04-26 11:55:18 +00:00
|
|
|
},
|
2020-04-09 17:36:12 +00:00
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
2020-04-10 10:42:39 +00:00
|
|
|
python_requires=">=3.5",
|
2020-04-09 17:36:12 +00:00
|
|
|
)
|