-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
57 lines (53 loc) · 1.79 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
# 1. Upload to PyPI:
# (Note: Building 'bdist_wheel' requires package 'wheel')
# python3 setup.py sdist bdist_wheel
# twine upload dist/*
#
# 2. Check if everything looks all right: https://pypi.python.org/pypi/SoMeWeTa
#
# 3. Go to https://github.com/tsproisl/SoMeWeTa/releases/new and
# create a new release
from os import path
from setuptools import setup
version = {}
with open("someweta/version.py") as fh:
exec(fh.read(), version)
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as fh:
long_description = fh.read()
setup(
name='SoMeWeTa',
version=version["__version__"],
author='Thomas Proisl',
author_email='thomas.proisl@fau.de',
packages=[
'someweta',
],
scripts=[
'bin/somewe-tagger',
],
url="https://github.com/tsproisl/SoMeWeTa",
download_url='https://github.com/tsproisl/SoMeWeTa/archive/v%s.tar.gz' % version["__version__"],
license='GNU General Public License v3 or later (GPLv3+)',
description='A part-of-speech tagger with support for domain adaptation and external resources.',
long_description=long_description,
install_requires=[
"numpy",
"regex>=2019.02.18",
],
python_requires='>=3.4',
classifiers=[
# 'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Natural Language :: French',
'Natural Language :: German',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Linguistic',
],
)