-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.14 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
# -*- coding: utf-8 -*-
import sys
from distutils.core import setup
from os.path import dirname, join
from setuptools import find_packages
if not sys.version_info >= (3, 5, 1):
sys.exit('Only support Python version >=3.5.1.\n'
'Found version is {}'.format(sys.version))
__version__ = open(join(dirname(__file__), 'lehrex', 'VERSION')).read().strip()
setup(
name='lehrex',
author='Lukas Kluft',
author_email='[email protected]',
url='https://github.com/lkluft/lehrex',
download_url='https://github.com/lkluft/lehrex/tarball/v' + __version__,
version=__version__,
packages=find_packages(),
license='MIT',
description='Support the research during the Lehrexkursion.',
classifiers=[
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
include_package_data=True,
install_requires=[
'matplotlib>=1.5.1',
'numpy>=1.10.4',
'nose',
'pandas',
],
)