72dce18c5c
Same as what's on PyPI, just the working version
17 lines
446 B
Python
17 lines
446 B
Python
import setuptools
|
|
with open('README.md', 'r') as fh:
|
|
long_description = fh.read()
|
|
setuptools.setup(
|
|
name='stockquotes',
|
|
version='1.0.5',
|
|
description='A simple module for retreiving stock data',
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
packages=setuptools.find_packages(),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent"
|
|
],
|
|
python_requires='>=3.0'
|
|
)
|