-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 701 Bytes
/
setup.py
File metadata and controls
21 lines (18 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import os
from setuptools import setup
lib_folder = os.path.dirname(os.path.realpath(__file__))
# get required packages from requirements.txt
requirement_path = os.path.join(lib_folder, 'requirements.txt')
install_requires = []
if os.path.isfile(requirement_path):
with open(requirement_path) as f:
install_requires = f.read().splitlines()
setup(name='tactile_image_processing',
version='0.0.1',
description='Standard image processing methods for use on tactile images.',
author='Alex Church',
author_email='alex.church@bristol.ac.uk',
license='',
packages=['tactile_image_processing'],
install_requires=install_requires,
zip_safe=False)