forked from oasis-open/cti-stix-visualization
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
27 lines (25 loc) · 762 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
from codecs import open
from setuptools import setup, find_packages
def get_long_description():
with open('README.Python.rst') as f:
return f.read()
setup(
name="stix2-viz",
description="Visualize STIX content",
long_description=get_long_description(),
long_description_content_type='text/x-rst',
license='BSD',
url='https://oasis-open.github.io/cti-documentation/',
author='OASIS Cyber Threat Intelligence Technical Committee',
author_email='[email protected]',
version="0.3.0",
packages=find_packages(),
install_requires=["jupyter>=1.0.0"],
package_data={
"stix2viz": [
"d3/*",
"stix2viz/icons/*",
"stix2viz/stix2viz.js",
],
}
)