-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (46 loc) · 1.35 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
from setuptools import setup, find_packages
setup(
name='deepwalk',
version='0.1',
description="Crawl a directory of files, handle archives transparently.",
long_description="",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7'
],
keywords='files walk index survey',
author='OCCRP',
author_email='[email protected]',
url='http://github.com/occrp/deepwalk',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'test']),
namespace_packages=[],
package_data={},
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
install_requires=[
'chardet',
'rarfile',
'six',
'normality'
],
tests_require=[
'nose',
'coverage',
],
entry_points={
'deepwalk.package': [
'zip = deepwalk.types:ZipPackage',
'rar = deepwalk.types:RarPackage',
'tar = deepwalk.types:TarPackage',
'7z = deepwalk.types:SevenZipPackage',
'gzip = deepwalk.types:GzipPackage',
'bz2 = deepwalk.types:BZ2Package',
]
}
)