-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (36 loc) · 1.12 KB
/
setup.py
File metadata and controls
42 lines (36 loc) · 1.12 KB
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
32
33
34
35
36
37
38
39
40
41
42
"""Packaging."""
from codecs import open
from os.path import abspath
from os.path import dirname
from os.path import join
from setuptools import find_packages
from setuptools import setup
from yipy import __version__
this_dir = abspath(dirname(__file__))
with open(join(this_dir, 'README.md'), encoding='utf-8') as file:
long_description = file.read()
setup(
name='yipy',
version=__version__,
description='A python wraper for Yify\'s API.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/patillacode/yipy',
author='Patilla Code',
author_email='patillacode@gmail.com',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: Public Domain',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
],
keywords='yify, api, python',
packages=find_packages(exclude=['docs', 'tests*']),
install_requires=['requests'],
extras_require={},
entry_points={},
cmdclass={},
)