-
Notifications
You must be signed in to change notification settings - Fork 61
/
setup.py
36 lines (32 loc) · 1.07 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
#!/usr/bin/env python
from setuptools import setup
long_description = open('README.rst').read()
setup(
name='bandicoot',
author='Yves-Alexandre de Montjoye',
author_email='[email protected]',
version="0.6.0",
url="https://github.com/computationalprivacy/bandicoot",
license="MIT",
packages=[
'bandicoot',
'bandicoot.helper',
'bandicoot.tests'
],
include_package_data=True,
description="A toolbox to analyze mobile phone metadata.",
long_description=long_description,
classifiers=[
'Environment :: Plugins',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics'
],
extras_require={
'tests': ['numpy', 'scipy', 'networkx']
})