-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·50 lines (43 loc) · 1.23 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
from setuptools import find_packages, setup
from fpcap import __version__ as version
author = 'Daning Su'
author_email = 'sudaning@sina.com'
description = "A pure Python library designed to make it easy and quick to capture RTP on FREESWITCH's established session"
long_description = '''
'''
with open('./requirements.txt', 'r') as f:
requirements = f.readlines()
install_requires = [x for x in requirements if (x and x[0] != '#')]
license = 'LICENSE'
name = 'pyFpcap'
packages = [
'fpcap',
]
platforms = ['linux']
url = 'https://github.com/sudaning/Fpcap'
download_url = ''
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Natural Language :: Chinese (Simplified)',
'Topic :: Text Processing',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
]
setup(author=author,
author_email=author_email,
description=description,
license=license,
long_description=long_description,
install_requires=install_requires,
maintainer=author,
name=name,
packages=find_packages(),
platforms=platforms,
url=url,
download_url=download_url,
version=version,
classifiers=classifiers,
)