-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.02 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.02 KB
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as file:
required = file.read().splitlines()
setup(
name="deeplay",
version="0.1.4",
license="MIT",
packages=find_packages(),
author=(
"Benjamin Midtvedt, Jesus Pineda, Henrik Klein Moberg, "
"Harshith Bachimanchi, Mirja Granfors, Alex Lech, "
"Carlo Manzo, Giovanni Volpe"
),
description=(
"An AI-powered platform for advancing deep learning research "
"and applications, developed by DeepTrackAI."
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DeepTrackAI/deeplay",
keywords=[
"AI",
"Deep Learning",
"Machine Learning",
"Data Science",
"Research Platform",
"Artificial Intelligence",
"Technology",
],
python_requires=">=3.9",
install_requires=required,
)