-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (38 loc) · 1.19 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
#! /usr/bin/env python
from setuptools import setup, find_packages
setup(
name='aubrey-transcription',
version='3.0.0',
packages=find_packages(exclude=['tests']),
description='Serves up transcriptions info for Aubrey.',
long_description='See the GitHub page for more information.',
include_package_data=True,
install_requires=[
'pypairtree @ git+https://github.com/unt-libraries/pypairtree',
'flask~=3.0.3',
],
zip_safe=False,
url='https://github.com/unt-libraries/aubrey-transcription',
author='University of North Texas Libaries',
author_email='[email protected]',
license='BSD',
keywords=[
'flask',
'json',
'transcript',
'aubrey',
'app',
'webapp',
],
classifiers=[
'Natural Language :: English',
'Environment :: Web Environment',
'Framework :: Flask',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)