-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
24 lines (22 loc) · 910 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
from setuptools import setup, find_packages
from simple_tensor import *
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='simple_tensor', # Required
version=version, # Required
description='a simple package for handling tensorflow tensor', # Required
long_description=long_description,
long_description_content_type='text/markdown',
author='fatchur_rahman', # Optional
author_email='fatchur.rahman1@gmail.com', #optional
packages=["simple_tensor",
"simple_tensor.transfer_learning",
"simple_tensor.object_detector",
"simple_tensor.segmentation",
"simple_tensor.rnn_packs",
"simple_tensor.networks",
"simple_tensor.face_recog"], # Required
)