-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
30 lines (24 loc) · 856 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
import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description.
def read(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
def get_packages():
requirementPath = 'requirements.txt'
packages = []
if os.path.isfile(requirementPath):
with open(requirementPath) as f:
packages = f.read().splitlines()
return packages
setup(
name="face_segmentation",
version="1.0.0",
author="Sanjana Srinivas",
author_email="sanjanasrinivas73@gmail.com",
description="A demonstration of parsing different parts of the face using semantic segmentation.",
keywords="face segmentation",
url="git@github.com:Sanjana7395/face_segmentation.git",
install_requires=get_packages(),
long_description=read('README.md'),
)