Mercurial > personal > weather-server
comparison setup.py @ 4:e7c8dcc5fc15
Make the weather server pip-installable and locally runnable.
| author | Paul Fisher <paul@pfish.zone> | 
|---|---|
| date | Sun, 29 Sep 2019 15:10:18 -0400 | 
| parents | |
| children | f8c2cb05d643 | 
   comparison
  equal
  deleted
  inserted
  replaced
| 3:b42c4bfe57c7 | 4:e7c8dcc5fc15 | 
|---|---|
| 1 import setuptools | |
| 2 | |
| 3 setuptools.setup( | |
| 4 name='weather-server', | |
| 5 version='0.0.1', | |
| 6 packages=setuptools.find_packages(), | |
| 7 python_requires='>=3.7', | |
| 8 install_requires=[ | |
| 9 'attrs', | |
| 10 'flask', | |
| 11 'flup', | |
| 12 'pymongo', | |
| 13 'pytz', | |
| 14 ], | |
| 15 setup_requires=['wheel'], | |
| 16 ) | 
