-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
40 lines (39 loc) · 1.53 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
import os, setuptools
dir_path = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(dir_path, 'README.md'), "r") as fh:
long_description = fh.read()
setuptools.setup(
name='PASSION',
version='1.0.0',
author='Rodrigo Pueblas, Shruthi Patil, Patrick Kuckertz, Jann Weinand, Leander Kotzur, Detlef Stolten',
author_email='[email protected], [email protected], [email protected], [email protected], [email protected], [email protected]',
description='Photovoltaic Satellite Segmentation',
long_description=long_description,
long_description_content_type="text/markdown",
url='',
include_package_data=True,
packages=setuptools.find_packages(),
setup_requires=[
'setuptools-git'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Image Processing',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords=[
'photovoltaic',
'renewables',
'satellite'
],
)