-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
35 lines (31 loc) · 1.04 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
import os
from setuptools import setup, find_packages
def readfile(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='pytreebank',
version='0.2.7',
description='Python package for loading Stanford Sentiment Treebank corpus',
long_description=readfile('README.md'),
long_description_content_type="text/markdown",
ext_modules=[],
packages=find_packages(),
author='Jonathan Raiman',
author_email='[email protected]',
url='https://github.com/JonathanRaiman/pytreebank',
download_url='https://github.com/JonathanRaiman/pytreebank',
keywords='Machine Learning, NLP',
license='MIT',
platforms='any',
zip_safe=False,
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 2.7',
'Topic :: Text Processing :: Linguistic',
],
setup_requires=[],
install_requires=[],
include_package_data=True,
)