-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 962 Bytes
/
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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='vocabalance',
version='0.1.0',
description='Tool for analysing character word biases in Shakespeare plays',
url='https://gitlab.sphalerite.org/linus/vocabalance',
author='Linus Heckemann',
author_email='[email protected]',
license='GPLv3',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Education',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
],
keywords='shakespeare vocabulary statistics',
modules='vocabalance',
install_requires=['beautifulsoup4'],
entry_points={
'console_scripts': [
'vocabalance=vocabalance:main',
],
},
)