-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
44 lines (38 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
41
42
43
44
import os
from setuptools import setup, find_packages
with open('README.md', encoding='utf8') as f:
long_description = f.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
cwd = os.path.dirname(os.path.abspath(__file__))
version_txt = os.path.join(cwd, "version.txt")
with open(version_txt) as f:
version = f.readline().strip()
download_url = f'https://github.com/jakartaresearch/earth-vision/archive/v{version}.tar.gz'
setup(
name='earth-vision',
packages=find_packages(),
version=version,
license='MIT',
description='Python library for solving computer vision tasks specifically for satellite imagery',
long_description=long_description,
long_description_content_type='text/markdown',
author='Jakarta Research Team',
author_email='[email protected]',
url='https://github.com/jakartaresearch/earth-vision',
download_url=download_url,
keywords=['computer-vision', 'pytorch',
'machine-learning', 'satellite-imagery'],
install_requires=required,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)