-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
39 lines (33 loc) · 916 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup
from os.path import abspath, dirname, join
path = abspath(dirname(__file__))
classifiers = (
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'License :: OSI Approved :: MIT License',
)
required = (
'matplotlib',
'numpy',
'pandas',
'nltk',
'husl'
)
kw = {
'name': 'climatic',
'version': '0.1.0',
'description': 'A small toolbox of wind data plotting tools',
'long_description': open(join(path, 'README.md')).read(),
'author': 'Rob Story',
'author_email': '[email protected]',
'license': 'MIT License',
'url': 'https://github.com/wrobstory/climatic',
'keywords': 'wind data plotting',
'classifiers': classifiers,
'modules': ['climatic'],
'install_requires': required,
'zip_safe': True,
}
setup(**kw)