Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zihangJiang committed Jul 21, 2021
1 parent ece79bb commit 5cc1461
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
from setuptools import setup, find_packages
from codecs import open
from os import path

here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name = 'tlt',
packages = find_packages(exclude=['seg','visualize']),
version = '0.1.1',
version = '0.2.0',
license='Apache License 2.0',
long_description=long_description,
long_description_content_type='text/markdown',
description = 'Token Labeling Toolbox for training image models',
author = 'Zihang Jiang',
author_email = 'jzh0103@gmail.com',
Expand Down

0 comments on commit 5cc1461

Please sign in to comment.