-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 990 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 990 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
'''
setting up our library
'''
from setuptools import setup, find_packages
with open("VERSION") as version_file:
version = version_file.read().strip()
with open("docs/readme.md", "r", encoding="utf-8") as readme_file:
long_description = readme_file.read()
setup(
name="che3le",
version=version,
description='Learning OOP the Hard Way: Modeling and Implementing a Deep Learning Library',
long_description=long_description,
long_description_content_type='text/markdown',
author='Yazid Hoblos, Joelle Assy, Rayane Adam',
url='https://github.com/deeplearning-oop/2425-m1geniomhe-group-1/',
license='MIT',
packages=find_packages(),
python_requires='>=3.6',
install_requires=[
line.strip() for line in open("requirements.txt").readlines() if line.strip()
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)