forked from JuanjoSalvador/NyaaPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 836 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
from os import path
currdir = path.abspath(path.dirname(__file__))
with open(path.join(currdir, 'README.md'), encoding='utf-8') as f:
long_desc = f.read()
setup(name='nyaapy',
version='0.6.3',
install_requires=[
"requests",
"beautifulsoup4",
],
url='https://github.com/juanjosalvador/nyaapy',
long_description=long_desc,
long_description_content_type='text/markdown',
download_url=('https://github.com/juanjosalvador/'
'nyaapy/archive/0.6.2.tar.gz'),
license='MIT',
author='Juanjo Salvador',
author_email='[email protected]',
description='Allows you to make requests on Nyaa.si and nyaa.pantsu.cat',
packages=find_packages(exclude=['tests']),
zip_safe=False)