-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 820 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 820 Bytes
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
from setuptools import setup, find_packages
setup(
name="nate",
version="0.0.1",
install_requires=[
"pandas>=0.25.0",
"spacy",
#"python-igraph>=0.8.0",
"tok",
"numba",
"joblib",
"matplotlib",
"networkx",
"pillow",
"stop_words",
"gensim"
], # A bunch of things will need to go here; we'll have to do an audit of every package we use
packages = find_packages(),
include_package_data=True,
author = "John McLevey, Tyler Crick, Pierson Browne", # likely more later
description = "nate (Network Analysis with TExt).",
url="http://networkslab.org",
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
)
)