-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·31 lines (28 loc) · 987 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
30
31
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
setup(
author='Holiest of Hand Grenades',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
description="Basic Python NZBGet API client.",
install_requires=[],
license="Apache Software License 2.0",
include_package_data=True,
keywords='pynzbgetapi',
name='pynzbgetapi',
packages=find_packages(include=['pynzbgetapi']),
url='https://github.com/holiestofhandgrenades/pynzbgetapi',
version='0.4.0',
zip_safe=True,
)