-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 749 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from distutils.core import setup
from setuptools import find_packages
REQUIREMENTS = [
'marvinbot',
'python-Levenshtein',
'timezonefinder'
]
setup(name='marvinbot-weather-plugin',
version='0.3',
description='Weather from OpenWeatherMap and NOAA',
author='Conrado Reyes',
author_email='coreyes@gmail.com',
url='',
packages=[
'marvinbot_weather_plugin',
],
package_dir={
'marvinbot_weather_plugin':'marvinbot_weather_plugin'
},
zip_safe=False,
include_package_data=True,
package_data={'': ['*.ini']},
install_requires=REQUIREMENTS,
dependency_links=[
'git+ssh://git@github.com:BotDevGroup/marvin.git#egg=marvinbot',
],
)