-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 885 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
# This setup file is based on the one found here:
# https://towardsdatascience.com/create-your-custom-python-package-that-you-can-pip-install-from-your-git-repository-f90465867893
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='pi_cai_reader_core',
version='0.1.0',
author='I.N.Tzortzis',
author_email='[email protected]',
description='PI-CAI_reader installation',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/itzortzis/PI-CAI_reader',
project_urls = {
"Code": "https://github.com/itzortzis/PI-CAI_reader",
"Bug Tracker": "https://github.com/itzortzis/PI-CAI_reader/issues"
},
license='GPL-3.0',
packages=['pi_cai_reader_core'],
install_requires=['numpy', 'torch'],
)