forked from djgagne/ams-ml-python-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (33 loc) · 1.22 KB
/
setup.py
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
33
34
35
36
37
38
39
40
"""Setup file for ams-ml-python-course."""
from setuptools import setup
PACKAGE_NAMES = ['module_3', 'module_4']
KEYWORDS = [
'machine learning', 'deep learning', 'artificial intelligence',
'data mining', 'weather', 'meteorology', 'thunderstorm', 'wind', 'tornado'
]
SHORT_DESCRIPTION = 'Python library for AMS 2019 short course.'
LONG_DESCRIPTION = (
'Python library for short course (Machine Learning in Python for '
'Environment) at 2019 AMS (American Meteorological Society) annual meeting.'
)
CLASSIFIERS = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
]
if __name__ == '__main__':
setup(name='ams-ml-python-course',
version='0.1',
description=SHORT_DESCRIPTION,
long_description=LONG_DESCRIPTION,
license='MIT',
author='David John Gagne II',
author_email='[email protected]',
url='https://github.com/djgagne/ams-ml-python-course',
packages=PACKAGE_NAMES,
scripts=[],
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
include_package_data=True,
zip_safe=False)