david-meltzer
initial commit
5fa49b4
from setuptools import setup
common_kwargs = dict(
version="0.1.0",
license="MIT",
author="David Meltzer",
author_email="davidhmeltzer@gmail.com",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.9",
include_package_data=False,
)
setup(
name="sentiment_goodreads",
**common_kwargs
)