forked from OPHoperHPO/image-background-remove-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (39 loc) · 1.32 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
"""
Source url: https://github.com/OPHoperHPO/image-background-remove-tool
Author: Nikita Selin (OPHoperHPO)[https://github.com/OPHoperHPO].
License: Apache License 2.0
"""
import os
from setuptools import setup, find_packages
from carvekit import version
def read(filename):
filepath = os.path.join(os.path.dirname(__file__), filename)
file = open(filepath, 'r')
return file.read()
setup(
name='carvekit',
version=version,
author="Nikita Selin (Anodev)",
author_email='[email protected]',
description='Open-Source background removal framework',
long_description=read('README.md'),
long_description_content_type="text/markdown",
license='Apache License v2.0',
keywords=[],
url='https://github.com/OPHoperHPO/image-background-remove-tool',
packages=find_packages(),
scripts=[],
install_requires=[],
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
)