forked from kamushadenes/cefevent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (17 loc) · 756 Bytes
/
setup.py
File metadata and controls
20 lines (17 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import os
from distutils.core import setup
long_description = 'ArcSight Common Event Format library'
if os.path.exists('README.md'):
long_description = open('README.md', 'r').read()
setup(
name = 'cefevent',
packages = ['cefevent'], # this must be the same as the name above
version = '0.4.9',
description = 'ArcSight Common Event Format library',
long_description = long_description,
author = 'Kamus Hadenes',
author_email = 'kamushadenes@hyadesinc.com',
url = 'https://github.com/kamushadenes/cefevent', # use the URL to the github repo
download_url = 'https://github.com/kamushadenes/cefevent/tarball/0.1', # I'll explain this in a second
keywords = ['logging', 'cef', 'arcsight', 'event', 'security'], # arbitrary keywords
)