-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (56 loc) · 1.96 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# 1. Upload to PyPI:
# python3 setup.py sdist
# python3 setup.py sdist upload
#
# 2. Check if everything looks all right: https://pypi.python.org/pypi/Pareidoscope
#
# 3. Go to https://github.com/tsproisl/Pareidoscope/releases/new and
# create a new release
#
# 3. (alt.) Create tag and push to Github:
# git tag -a v<version> -m "annotation for this release"
# git push origin --tags
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as fh:
long_description = fh.read()
version = "0.11.0"
setup(
name='Pareidoscope',
version=version,
author='Thomas Proisl',
author_email='thomas.proisl@fau.de',
packages=[
'pareidoscope',
'pareidoscope.utils'
],
scripts=[
'bin/pareidoscope_associated_structures',
'bin/pareidoscope_association_strength',
'bin/pareidoscope_collexeme_analysis',
'bin/pareidoscope_corpus_to_sqlite',
'bin/pareidoscope_covarying_collexemes',
'bin/pareidoscope_draw_graphs',
],
url='https://github.com/tsproisl/Pareidoscope',
download_url='https://github.com/tsproisl/Pareidoscope/archive/v%s.tar.gz' % version,
# include_package_data=True,
# url='http://pypi.python.org/pypi/Pareidoscope/',
license='GNU General Public License v3 or later (GPLv3+)',
description='A collection of tools for determining the association between arbitrary linguistic structures.',
long_description=long_description,
install_requires=[
'networkx >= 2, < 3',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Linguistic',
],
)