41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
#!/usr/bin/env python
|
|
|
|
"""The setup script."""
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with open('README.md') as readme_file:
|
|
readme = readme_file.read()
|
|
|
|
requirements = ['Click==8.1.3', 'beautifulsoup4==4.11.1']
|
|
|
|
setup(
|
|
author="Anthony Correa",
|
|
author_email='a@correa.co',
|
|
python_requires='>=3.6',
|
|
classifiers=[
|
|
'Development Status :: 2 - Pre-Alpha',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Natural Language :: English',
|
|
'Programming Language :: Python :: 3.10',
|
|
],
|
|
description="An unoffical api for Box Office Mojo",
|
|
entry_points={
|
|
'console_scripts': [
|
|
'pymojo=pymojo.cli:main',
|
|
],
|
|
},
|
|
install_requires=requirements,
|
|
license="MIT license",
|
|
long_description=readme + '\n\n',
|
|
include_package_data=True,
|
|
keywords='boxofficemojo',
|
|
name='pymojo',
|
|
packages=find_packages(include=['pymojo', 'pymojo.*']),
|
|
test_suite='unittest',
|
|
url='https://github.com/anthonyscorrea/pymojo',
|
|
version='0.1.0',
|
|
zip_safe=False,
|
|
)
|