-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
63 lines (51 loc) · 1.78 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import setup, find_packages
from codecs import open
from os import path
"""
police-eis: police early intervention system
Copyright (C) 2016: Center for Data Science
and Public Policy <dsapp.org>
"""
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='police-eis',
# Versions should comply with PEP440
version='0.0.1',
description='Police Early Intervention System',
long_description=long_description,
url='https://github.com/dssg/police-eis',
author='Jennifer Helsby',
author_email='jen@redshiftzero.com',
license='GPL v3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Other Audience',
'Topic :: Scientific/Engineering :: Information Analysis',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='police analytics machine learning misconduct prediction',
packages=find_packages(exclude=['images', 'docs', 'tests*']),
setup_requires=['numpy', 'scipy'],
install_requires=['numpy', 'pyyaml', 'pandas', 'scikit-learn',
'sqlalchemy', 'datetime', 'scipy',
'psycopg2', 'seaborn'],
# Dev package requirements
# $ pip install -e .[dev,test]
extras_require={
'dev': ['nose'],
'test': ['nose'],
},
package_data={
'sample': ['example_default_profile.yaml'],
'sample': ['example_police_dept.yaml'],
'sample': ['default.yaml']
},
test_suite='nose.collector',
tests_require=['nose']
)