-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 952 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
31
32
33
34
35
36
37
38
from setuptools import setup
setup(
name='trakario',
version='0.1.0',
description='Automatic job applicant tracking system',
url='https://github.com/trakario/trakario',
author='Matthew D. Scholefield',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='trakario',
packages=['trakario'],
install_requires=[
'uvicorn',
'fastapi',
'loguru',
'pydantic[dotenv]',
'python-dateutil',
'imap_tools',
'spacy',
'tortoise-orm[asyncpg]'
],
entry_points={
'console_scripts': [
'trakario=trakario.__main__:main'
],
}
)