-
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
892fc41
commit d41f852
Showing
3 changed files
with
85 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Set the default behavior, in case people don't have core.autocrlf set. | ||
* text=auto | ||
|
||
# Denote all files that are truly binary and should not be modified. | ||
*.png binary | ||
*.jpg binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,60 @@ | ||
#!/usr/bin/env python | ||
"""Setup.py for bat""" | ||
|
||
import os | ||
|
||
from setuptools import setup, find_packages | ||
|
||
readme = open('README.rst').read() | ||
|
||
# Pull in the package info | ||
package_name = 'bat' | ||
package = __import__(package_name) | ||
version = package.__version__ | ||
author = package.__author__ | ||
email = package.__email__ | ||
|
||
|
||
# Data and Example Files | ||
def get_files(dir_name): | ||
"""Simple directory walker""" | ||
return [(os.path.join('.', d), [os.path.join(d, f) for f in files]) for d, _, files in os.walk(dir_name)] | ||
|
||
|
||
setup( | ||
name=package_name, | ||
version=version, | ||
description='Bro Analysis Tools', | ||
long_description=readme, | ||
author=author, | ||
author_email=email, | ||
url='https://github.com/kitware/bat', | ||
packages=find_packages(), | ||
include_package_data=True, | ||
data_files=get_files('data') + get_files('examples'), | ||
install_requires=[ | ||
'requests', | ||
'watchdog', | ||
'numpy', | ||
'scipy', | ||
'pandas', | ||
'scikit-learn', | ||
'pyarrow' | ||
], | ||
extras_require={ | ||
'all': ['yara-python', 'tldextract'] | ||
}, | ||
license='Apache', | ||
keywords='Bro, Python, Networking, Security, Scikit-Learn, Spark, Kafka, Parquet', | ||
classifiers=[ | ||
'Development Status :: 2 - Pre-Alpha', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: Implementation :: CPython', | ||
'Programming Language :: Python :: Implementation :: PyPy' | ||
], | ||
) | ||
#!/usr/bin/env python | ||
"""Setup.py for bat""" | ||
|
||
import os | ||
|
||
from setuptools import setup, find_packages | ||
|
||
readme = open('README.md').read() | ||
|
||
# Pull in the package info | ||
package_name = 'bat' | ||
package = __import__(package_name) | ||
version = package.__version__ | ||
author = package.__author__ | ||
email = package.__email__ | ||
|
||
|
||
# Data and Example Files | ||
def get_files(dir_name): | ||
"""Simple directory walker""" | ||
return [(os.path.join('.', d), [os.path.join(d, f) for f in files]) for d, _, files in os.walk(dir_name)] | ||
|
||
|
||
setup( | ||
name=package_name, | ||
version=version, | ||
description='Bro Analysis Tools', | ||
long_description=readme, | ||
author=author, | ||
author_email=email, | ||
url='https://github.com/SuperCowPowers/bat', | ||
packages=find_packages(), | ||
include_package_data=True, | ||
data_files=get_files('data') + get_files('examples'), | ||
install_requires=[ | ||
'requests', | ||
'watchdog', | ||
'numpy', | ||
'scipy', | ||
'pandas', | ||
'scikit-learn', | ||
'pyarrow' | ||
], | ||
extras_require={ | ||
'all': ['yara-python', 'tldextract'] | ||
}, | ||
license='Apache', | ||
keywords='Bro, Python, Networking, Security, Scikit-Learn, Spark, Kafka, Parquet', | ||
classifiers=[ | ||
'Development Status :: 2 - Pre-Alpha', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: Implementation :: CPython', | ||
'Programming Language :: Python :: Implementation :: PyPy' | ||
], | ||
) |