-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 856 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 856 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
from setuptools import setup, find_packages
# read the contents of README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='tei_reader',
python_requires='>=3.5, <4',
version='0.0.17',
description='TEI Reader',
long_description=long_description,
long_description_content_type='text/markdown',
author='Sheean Spoel (Digital Humanities Lab, Utrecht University)',
author_email='s.j.j.spoel@uu.nl',
url='https://github.com/CentreForDigitalHumanities/tei-reader',
license='MIT',
packages=['tei_reader', 'tei_reader.models', 'tei_reader.transform'],
package_data={'tei_reader.transform':['*']},
zip_safe=False,
install_requires=['beautifulsoup4', 'lxml']
)