-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (28 loc) · 946 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
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
__version__ = '0.0.2'
#path_root = os.path.abspath(os.path.dirname(__file__))
#with open(os.path.join(path_root, "README.md")) as f:
# long_description = f.read()
# currently, the installation relies on the make_env.yml file
# does not require anything here.
install_requires = [
# "numpy",
# "scipy",
]
#with open(os.path.join(path_root, "requirements.txt")) as f:
# install_requires = f.read().strip().split("\n")
setup(
name='alabeye',
version=__version__,
description='Adolphs Lab, eye tracking tools',
maintainer='Umit Keles',
maintainer_email='[email protected]',
packages=find_packages(),
install_requires=install_requires,
python_requires='>=3.8',
# long_description=long_description,
# long_description_content_type='text/markdown',
)