forked from EmersonElectricCo/pyFireEye
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (16 loc) · 635 Bytes
/
setup.py
File metadata and controls
22 lines (16 loc) · 635 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
def read_requirements():
with open("requirements.txt") as f:
requirements = [requirement.split("#")[0].strip() for requirement in f.read().split("\n") if requirement[0] != "#"]
return requirements
setup(
version="1.0.3",
name="pyFireEye",
description="Python API bindings for FireEye Products",
long_description="",
url="https://gitlab.com/EmersonElectricCo/pyFireEye",
author="Isaiah Eichen, Grant Steiner, Timothy Lemm",
author_email="timothy.lemm@emerson.com",
packages=find_packages(),
install_requires=read_requirements()
)