-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 1.02 KB
/
setup.py
File metadata and controls
27 lines (26 loc) · 1.02 KB
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name = 'sentida',
version = '0.5.1',
author = "Esben Kran, Søren Orm, Jacob Aarup Dalsgaard, Gustav Aarup Lauridsen, Lars Kjartan Bacher Svendsen",
author_email = "[email protected]",
description = "The Sentida Danish sentiment analysis package",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/guscode/sentida",
# packages = ['sentida'],
licence = 'CCBY-NC 3.0',
packages=setuptools.find_packages(),
include_package_data = True,
keywords = 'Natural Language Processing Sentiment Analysis',
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering"
],
package_data = {"sentida":['aarup.csv', 'intensifier.csv'],},
)