-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py~
executable file
·29 lines (29 loc) · 922 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
25
26
27
28
29
from setuptools import setup
import os
try:
import pypandoc
description=pypandoc.convert('readme.md','rst')
except:
description=''
setup(name='nwanime_dl',
version='1.8.6.7.3',
description='downloads anime from nwanime',
long_description=description,
url='https://github.com/thekindlyone/nwanime-dl',
author='thekindlyone',
author_email='[email protected]',
license='GNU GPL v2',
packages=['nwanime_dl'],
install_requires=[
'beautifulsoup4',
'lxml',
'requests' ],
scripts=['bin/nwanime-dl'],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7"
],
zip_safe=False)