forked from Liebeck/ArgMining
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 650 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (19 loc) · 650 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
from setuptools import setup
from setuptools import find_packages
setup(
name='argmining',
version='0.0.1',
description='Machine learning environment for paper *What to do with an airport? Mining Arguments in the German Online Participation Project Tempelhofer Feld*',
url='http://dbs.cs.uni-duesseldorf.de',
author='HHU Duesseldorf',
author_email='liebeck@cs.uni-duesseldorf.de',
packages=find_packages(exclude=['tests']),
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
],
install_requires=[
'pandas_confusion'
]
)