-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
48 lines (38 loc) · 1.37 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
from setuptools import setup, find_packages
# To use a consistent encoding
from os import path
import versioneer
here = path.abspath(path.dirname(__file__))
setup(
name='engarde',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='A python package for defensive data analysis.',
long_description='A python package for defensive data analysis.',
url='https://github.com/tomaugspurger/engarde',
# Author details
author='Tom Augspurger',
author_email='tom.w.augspurger@gmail.com',
# Choose your license
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
keywords='data analysis',
packages=find_packages(exclude=['tests']),
install_requires=['numpy', 'pandas', 'six'],
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
# for example:
# $ pip install -e .[dev,test]
extras_require={
'dev': [''],
'test': ['coverage', 'pytest', 'ipython', 'traitlets', 'numpydoc'],
},
)