-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 995 Bytes
/
setup.py
File metadata and controls
37 lines (34 loc) · 995 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
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup
with open(file='README.md', mode='r') as readme_handler:
long_description = readme_handler.read()
setup(
name='cira',
author='Julian Frattini',
author_email='juf@bth.se',
version='0.9.7',
description='Implementation of the Causality in Requirements Artifacts (CiRA) functionality',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['nlp'],
url='https://github.com/JulianFrattini/cira',
python_requires='>=3.10',
install_requires=[
'numpy==1.23',
'python-dotenv==0.20',
'pytorch_lightning==1.7',
'tabulate==0.8.10',
'torch==1.12',
'transformers==4.10',
'uvicorn==0.18.3',
'fastapi==0.85.0',
'pydantic==1.10.2'
],
extras_require={
'dev': [
'pytest==7.1.3',
'pytest-cov==3.0',
'pytest-env==0.8.1',
'pytest-mock==3.10.0'
],
},
)