-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 928 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
from setuptools import setup, find_packages
def read_requirements(file_name):
with open(file_name, "r") as file:
return [line.strip() for line in file if line.strip()]
setup(
name='raytest',
version='0.1.0',
author='Brian Gardner',
author_email="brgardner@hotmail.co.uk",
description='Ray testing on the cluster',
long_description=open('README.md').read(),
url="https://github.com/BCGardner/raytest",
package_dir={"": "src"},
packages=find_packages(where='src'),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires='>=3.11',
install_requires=read_requirements("requirements.txt")
)