-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1004 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 1004 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
30
31
32
33
34
import os
from setuptools import setup, find_packages
def readfile(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='ciseau',
version='1.0.1',
description='Word and sentence tokenization.',
long_description=readfile('README.md'),
ext_modules=[],
packages=find_packages(),
py_modules = [],
author='Jonathan Raiman',
author_email='jonathanraiman@gmail.com',
url='https://github.com/JonathanRaiman/ciseau',
download_url='https://github.com/JonathanRaiman/ciseau',
keywords='XML, tokenization, 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,
)