-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 969 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (27 loc) · 969 Bytes
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
from setuptools import setup
# Use README for the PyPI page
with open('README.md') as f:
long_description = f.read()
setup(
name='PyMDL',
version='1.0.1',
license='MIT',
description='Web Scraping API to fetch data from MDL',
url='https://github.com/Rocker2234/Python-MDL-API',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['PyMDL'],
install_requires=['beautifulsoup4', 'requests', 'lxml'],
keywords='MDL movie api MyDramaList',
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Games/Entertainment",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search"
]
)