-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 891 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
30
import setuptools
with open("README.md") as f:
long_description = f.read()
setuptools.setup(
name="twarc-network",
version="0.3.0",
url="https://github.com/docnow/twarc-network",
author="Ed Summers",
author_email="[email protected]",
packages=["twarc_network"],
description="Generate network visualizations for Twitter data",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.3",
install_requires=["twarc", "networkx"],
setup_data={"twarc_network": ["twarc_network/index.html"]},
package_data={"twarc_network": ["index.html"]},
setup_requires=["pytest-runner"],
tests_require=["pytest"],
entry_points="""
[twarc.plugins]
network=twarc_network:network
""",
)