This commit is contained in:
parent
67c33e0615
commit
914c1104ad
@ -3,5 +3,7 @@
|
|||||||
.db
|
.db
|
||||||
.env
|
.env
|
||||||
.git
|
.git
|
||||||
|
dist
|
||||||
|
*.egg*
|
||||||
__pycache__
|
__pycache__
|
||||||
test.py
|
test.py
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -2,5 +2,7 @@
|
|||||||
.venv
|
.venv
|
||||||
.db
|
.db
|
||||||
.env
|
.env
|
||||||
|
dist
|
||||||
|
*.egg*
|
||||||
__pycache__
|
__pycache__
|
||||||
test.py
|
test.py
|
||||||
|
13
LICENSE
Normal file
13
LICENSE
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||||
|
Version 2, December 2004
|
||||||
|
|
||||||
|
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
||||||
|
|
||||||
|
Everyone is permitted to copy and distribute verbatim or modified
|
||||||
|
copies of this license document, and changing it is allowed as long
|
||||||
|
as the name is changed.
|
||||||
|
|
||||||
|
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. You just DO WHAT THE FUCK YOU WANT TO.
|
22
README.md
22
README.md
@ -44,24 +44,8 @@ You have to install MariaDB (or any MySQL server) to be able to access the admin
|
|||||||
## Links
|
## Links
|
||||||
|
|
||||||
- Project homepage: https://nyaa.crystalyx.net/
|
- Project homepage: https://nyaa.crystalyx.net/
|
||||||
- Repository: https://git.crystalyx.net/Xefir/PyNyaaTa
|
- Source repository: https://git.crystalyx.net/Xefir/PyNyaaTa
|
||||||
- Issue tracker: https://git.crystalyx.net/Xefir/PyNyaaTa/issues
|
- Issue tracker: https://git.crystalyx.net/Xefir/PyNyaaTa/issues
|
||||||
- My other projects: https://git.crystalyx.net/Xefir
|
- My other projects: https://git.crystalyx.net/Xefir
|
||||||
|
- Docker hub: https://hub.docker.com/r/xefir/pynyaata
|
||||||
## Licensing
|
- Donations: https://paypal.me/Xefir
|
||||||
|
|
||||||
```
|
|
||||||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
|
||||||
Version 2, December 2004
|
|
||||||
|
|
||||||
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
|
||||||
|
|
||||||
Everyone is permitted to copy and distribute verbatim or modified
|
|
||||||
copies of this license document, and changing it is allowed as long
|
|
||||||
as the name is changed.
|
|
||||||
|
|
||||||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
|
||||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
|
||||||
|
|
||||||
0. You just DO WHAT THE FUCK YOU WANT TO.
|
|
||||||
```
|
|
||||||
|
25
setup.py
Normal file
25
setup.py
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
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,
|
||||||
|
classifiers=[
|
||||||
|
"Programming Language :: Python :: 3",
|
||||||
|
"Operating System :: OS Independent",
|
||||||
|
],
|
||||||
|
python_requires='>=3.6',
|
||||||
|
)
|
Reference in New Issue
Block a user