-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 785 Bytes
/
setup.py
File metadata and controls
32 lines (27 loc) · 785 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
30
31
32
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
author="Levi Malott",
author_email='levi@third.consulting',
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
],
description="Register alert criteria and receive notifications on weather.",
entry_points={
'console_scripts': [
'fwas=fwas.cli:cli',
],
},
long_description=readme,
include_package_data=True,
keywords='fwas',
name='fwas',
packages=find_packages(include=['fwas']),
test_suite='tests',
url='https://github.com/firelab/FWAS',
version='0.1.0',
zip_safe=False,
)