forked from Martinviv/pcap_analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 866 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
31
32
from setuptools import setup, find_packages
import codecs
import os
import platform
# Get the long description from the README file
here = os.path.abspath(os.path.dirname(__file__))
try:
with codecs.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
except:
# This happens when running tests
long_description = None
# TODO test if good
setup(name='smarthumaintracker',
version='0.1',
description='Smart Humain Tracker',
long_description=long_description,
url='https://github.com/ElNiak/SmartHumanTracker',
author='A-Team from UCLouvain',
author_email='nomail@uclouvain.com',
license='MIT', # lol we dont know
packages=find_packages(),
setup_requires=['wheel'],
install_requires=[
'numpy',
'scapy'
],
zip_safe=False)