-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 708 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 708 Bytes
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
#!/usr/bin/env python3
from setuptools import setup
setup(name='egonetworks',
version='0.1',
description='Structural analysis of egocentric network graphs',
url='',
author='Valerio Arnaboldi',
author_email='[email protected]',
license='MIT',
packages=['egonetworks'],
setup_requires=['numpy', 'cython'],
install_requires=[
'jenks',
'tweepy',
'python-igraph',
'sklearn',
'scipy',
'numpy'
],
dependency_links=[
'git+https://github.com/valearna/jenks.git#egg=jenks'
],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)