-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (45 loc) · 1.55 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
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python2
# coding=utf-8
# Authors: Santi Villalba <[email protected]>
# Licence: BSD 3 clause
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='whatami',
license='BSD 3 clause',
description='Easily provide python objects with self-identification',
long_description=open('README.rst').read().replace('|Build Status| |Coverage Status| |Codacy Status|', ''),
version='5.1.16dev0',
url='https://github.com/sdvillal/whatami',
author='Santi Villalba',
author_email='[email protected]',
packages=['whatami',
'whatami.tests',
'whatami.minijoblib',
'whatami.wrappers',
'whatami.wrappers.tests'],
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'License :: OSI Approved',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires=['arpeggio>=1.5', 'future>=0.15.2', 'toolz'],
tests_require=['pytest', 'pytest-cov', 'pytest-pep8'],
extras_require={
'numpy': ['numpy'],
'pandas': ['pandas'],
'sklearn': ['scikit-learn'],
'docs': ['Sphinx'],
},
platforms=['Any'],
)