-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
39 lines (36 loc) · 1.18 KB
/
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
31
32
33
34
35
36
37
38
39
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt") as f:
requirements = f.readlines()
setuptools.setup(
name="shifterator",
version="0.2.0",
author="Ryan J. Gallagher",
author_email="[email protected]",
description="Interpretable data visualizations for understanding how texts differ at the word level",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ryanjgallagher/shifterator",
python_requires="~=3.6",
install_requires=requirements,
packages=setuptools.find_packages(),
include_package_data=True,
keywords=[
"natural language processing",
"sentiment analysis",
"information theory",
"computational social socience",
"digital humanities",
"text analysis",
"text as data",
"data visualization",
"data viz",
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)