forked from pylayers/pylayers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 897 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup script for pylayers
"""
import numpy
from setuptools import setup,find_packages
setup(name='pylayers' ,
version='0.1',
description='Python LocAlization mobilitY Environement aware Radio Simulator',
author='UGUEN Bernard, AMIOT Nicolas, LAARAIEDH Mohamed, MHEDHBI Meriem',
url='https://github.com/pylayers/pylayers',
include_dirs = [numpy.get_include()],
install_requires=[
'numpy>=1.6.1',
'scipy>=0.10.1',
'networkx>=1.7',
'matplotlib>=1.1.0',
'shapely>=1.2.14',
'SimPy==2.2',
'PIL>=1.1.5',
'bitstring>=3.0.2',
'shapely>=1.2.14',
'descartes>=1.0',
],
packages=find_packages()
)