-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 1014 Bytes
/
setup.py
File metadata and controls
36 lines (31 loc) · 1014 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
33
34
35
36
# -*- coding: utf-8 -*-
import io
import sys
import numpy as np
from setuptools import find_packages
from setuptools import setup
PACKAGE = 'WindAdapter'
NAME = 'WindAdapter'
VERSION = '0.4.0'
DESCRIPTION = 'Windpy data adapter'
AUTHOR = 'iLampard, RoxanneYang, bella21'
URL = 'https://github.com/iLampard/WindAdapter'
LICENSE = 'MIT'
if sys.version_info > (3, 0, 0):
requirements = "requirements/py3.txt"
else:
requirements = "requirements/py2.txt"
setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
url=URL,
include_package_data=True,
packages=find_packages(),
package_data={'': ['*.csv']},
install_requires=io.open(requirements, encoding='utf8').read(),
include_dirs=[np.get_include()],
classifiers=['Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'])