-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (22 loc) · 801 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
from setuptools import setup, find_packages
def parse_requirements(filename):
with open(filename, 'r') as file:
lines = (line.strip() for line in file)
return [line for line in lines if line and not line.startswith('#')]
requirements = parse_requirements('requirements.txt')
setup(
name="markingpal",
version="0.1",
description="AI agent for helping with constructive student feedback.",
author="Marijan Beg",
author_email="[email protected]",
url="https://github.com/marijanbeg/markingpal",
packages=find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: BSD 3-Clause License",
"Operating System :: OS Independent",
],
python_requires='>=3.11',
)