Mercurial > personal > weather-server
view setup.py @ 5:368f732f13d0
Actually make the server runnable.
| author | Paul Fisher <paul@pfish.zone> |
|---|---|
| date | Sun, 29 Sep 2019 15:14:30 -0400 |
| parents | e7c8dcc5fc15 |
| children | f8c2cb05d643 |
line wrap: on
line source
import setuptools setuptools.setup( name='weather-server', version='0.0.1', packages=setuptools.find_packages(), python_requires='>=3.7', install_requires=[ 'attrs', 'flask', 'flup', 'pymongo', 'pytz', ], setup_requires=['wheel'], )
