-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (45 loc) · 1.28 KB
/
setup.py
File metadata and controls
49 lines (45 loc) · 1.28 KB
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
41
42
43
44
45
46
47
48
49
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='webike-toolchain',
version='0.0.1',
description='WeBike Data Processing Toolchain',
long_description=long_description,
url='https://github.com/N-Coder/webike-toolchain',
author='Simon Dominik `Niko` Fink',
author_email='sfink@uwaterloo.ca',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
packages=find_packages(),
install_requires=[
'matplotlib>=2.0.0b4',
'metar>=1.4.0',
'numpy>=1.11.0',
'pygobject>=3.20.1',
'PyMySQL>=0.7.9',
'scipy>=0.18.0',
'tabulate>=0.7.5',
'wget>=3.2'
],
include_package_data=True,
package_data={
'webike': [
'ui/glade/*'
],
},
entry_points={
"console_scripts": [
"webike-timeline = webike.ui.UI:main",
"webike-histogram = webike.Histogram:main",
"webike-prepocess = webike.Preprocess:main",
]
},
)