-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (30 loc) · 1003 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
"""install"""
from __future__ import absolute_import
import os
from setuptools import setup, find_packages
import datetime
NOW = datetime.datetime.now()
MAJOR = 0
def read(fname):
"""README helper fuction"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="caelum",
version="%s.%s.%s.%s" % (MAJOR, NOW.month, NOW.day, NOW.hour),
author="Nathan Charles",
author_email="[email protected]",
description=("library for weather sources (historical and forecasted)"),
license="LGPL",
keywords="climate weather data TMY EPW EERE",
url="https://github.com/nrcharles/caelum",
packages=find_packages(),
long_description=read('README.rst'),
install_requires=['geopy'],
package_data={'': ['*.csv', '*.txt', '*.rst']},
test_suite='tests.unit',
classifiers=[
"Development Status :: 4 - Beta",
("License :: OSI Approved ::" \
" GNU Library or Lesser General Public License (LGPL)"),
],
)