-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
27 lines (24 loc) · 1.1 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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.readlines()
long_description = '''Python package used to fill an image's missing data gaps. \
Specifically useful for obscuring image patterns in a machine learning context.'''
setup(
name = 'missing_pixel_filler',
version = '0.0.1',
author = 'Sarah Chen, Esther Cao',
author_email = 'sarah.chen6@gmail.com, esthercao888@gmail.com',
url = 'https://github.com/spaceml-org/empty-image-filler',
description = 'downloading tool to fill missing image data gaps',
long_description = long_description,
long_description_content_type = "text/markdown",
packages = find_packages(),
classifiers = (
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
keywords = 'missing_pixel_filler missing_image_filler image_data_filler empty_image_filler pixel_filler image_filler filler pixel image',
install_requires = requirements,
py_modules=['swath_activations']
)