Mercurial > personal > weather-server
view setup.py @ 22:e229afdd447b
locations.py: store location name into the right place.
| author | Paul Fisher <paul@pfish.zone> |
|---|---|
| date | Fri, 01 Nov 2019 00:48:56 -0400 |
| parents | beb42c835c52 |
| children | 88249e451566 |
line wrap: on
line source
import setuptools setuptools.setup( name='weather-server', version='0.0.7', packages=setuptools.find_packages(), python_requires='>=3.7', install_requires=[ 'attrs', 'flask', 'flup', 'pymongo', 'pytz', ], setup_requires=['wheel'], include_package_data=True, )
