mirror of
https://github.com/KevinMidboe/termForecast.git
synced 2025-10-29 01:40:18 +00:00
Made requirements and setup.py files.
This commit is contained in:
4
requirements.txt
Normal file
4
requirements.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
fire==0.1.1
|
||||||
|
geoip2==2.5.0
|
||||||
|
fuzzywuzzy==0.15.1
|
||||||
|
python-Levenshtein==0.12.0
|
||||||
38
setup.py
Executable file
38
setup.py
Executable file
@@ -0,0 +1,38 @@
|
|||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
with open('requirements.txt') as f:
|
||||||
|
requirements = f.read().splitlines()
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name='term-forecast',
|
||||||
|
version='0.1.dev0',
|
||||||
|
author='Kevin Midboe',
|
||||||
|
author_email='support@kevinmidboe.com',
|
||||||
|
|
||||||
|
description='Terminal Forcast is a easily accessible terminal based weather forecaster',
|
||||||
|
url='https://github.com/KevinMidboe/termWeather/',
|
||||||
|
license='MIT',
|
||||||
|
|
||||||
|
packages=['term_forecast'],
|
||||||
|
|
||||||
|
classifiers = [
|
||||||
|
"Environment :: Console",
|
||||||
|
"Programming Language :: Python :: 3.6",
|
||||||
|
"Programming Language :: Python :: 3 :: Only",
|
||||||
|
"License :: OSI Approved :: MIT License",
|
||||||
|
"Development Status :: 4 - Beta",
|
||||||
|
|
||||||
|
'Operating System :: OS Independent',
|
||||||
|
'Operating System :: POSIX',
|
||||||
|
'Operating System :: MacOS',
|
||||||
|
'Operating System :: Unix',
|
||||||
|
],
|
||||||
|
|
||||||
|
install_requires=requirements,
|
||||||
|
|
||||||
|
entry_points={
|
||||||
|
'console_scripts': [
|
||||||
|
'forecast = term_forecast.term_weather:main',
|
||||||
|
],
|
||||||
|
}
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user