This repository has been archived by the owner on Jan 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
55 lines (52 loc) · 1.38 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
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
NAME = 'masterthesis'
DESCRIPTION = 'Semantic segmentation of WorldView 3 satelite images'
URL = 'https://github.com/boren/MasterThesis'
EMAIL = 'fredrik@bore.ai'
AUTHOR = 'Fredrik Bore, Andreas Taraldsen'
REQUIRES_PYTHON = '>=3.6.0'
VERSION = None
REQUIRED = [
'Pillow',
'h5py',
'keras>=2.1',
'git+git://github.com/keras-team/keras-contrib.git@4f07dc3d4c98fd0dd90ba93a87d50b920d8d51e7#egg=keras-contrib',
'numpy',
'matplotlib',
'opencv-python',
'pandas',
'pydot',
'requests',
'seaborn',
'scipy',
'scikit-image',
'scikit-learn',
'shapely',
'termcolor',
'tifffile==0.13.*',
'tqdm',
'webcolors'
]
setup(
name=NAME,
version='1.0.0',
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_packages(exclude=('tests',)),
install_requires=REQUIRED,
include_package_data=True,
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
)