forked from engarde-dev/engarde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (36 loc) · 1.32 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
from setuptools import setup, find_packages
# To use a consistent encoding
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='topper-123-engarde',
version='0.3.3',
description='A python package for defensive data analysis.',
long_description='A python package for defensive data analysis.',
url='https://github.com/topper-123/engarde',
# Author details
author='Topper-123 (Originally Tom Augsburger)',
author_email='terji78@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'],
},
)