forked from ExodusIntelligence/cpe_utils
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 965 Bytes
/
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
#!/usr/bin/env python
# encoding: utf-8
import os, sys
from setuptools import setup
setup(
# metadata
name='cpe_utils',
description='A CPE utility library',
long_description="""
A CPE utility library that provides utility functions for
expanding CPE wildcards, matching CPEs, etc.
""",
license='MIT',
version='0.1.0',
author='Exodus Intelligence: Mark Jones, Calvin Hooper, Noe Ortega, James Johnson',
maintainer='Exodus Intelligence',
author_email='eng@exodusintel.com',
url='https://github.com/ExodusIntelligence/cpe_utils',
platforms='Cross Platform',
download_url="https://github.com/ExodusIntelligence/cpe_utils/tarball/v1.0.0",
install_requires = open(os.path.join(os.path.dirname(__file__), "requirements.txt")).read().split("\n"),
classifiers = [
'Programming Language :: Python :: 2',
# 'Programming Language :: Python :: 3',
],
packages=['cpe_utils'],
)