-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
50 lines (40 loc) · 1.24 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import os
import sys
from shutil import rmtree
from setuptools import find_packages, setup, Command
import setuptools
NAME='multi-label-pigeon'
AUTHOR="Michael Sugimura"
EMAIL="[email protected]"
DESCRIPTION="A way to label multi label image datasets in jupyter"
URL="https://https://github.com/sugi-chan/multi_label_pigeon"
REQUIRED = [
'ipywidgets'
]
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
about = {}
with open(os.path.join(here, 'multi_label_pigeon', '__version__.py')) as f:
exec(f.read(), about)
setuptools.setup(
name=NAME,
version=about['__version__'],
#scripts=['multi_label_pigeon'] ,
author=AUTHOR,
author_email="[email protected]",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
url=URL,
packages=setuptools.find_packages(),
install_requires=REQUIRED,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)