-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (24 loc) · 1.01 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
# ref: https://qiita.com/studio_haneya/items/9aad8f9ede11e58b41a8
# ref: https://qiita.com/shonansurvivors/items/0fbcbfde129f2d26301c
from setuptools import setup, find_packages
import os
# long_description(後述)に、GitHub用のREADME.mdを指定
with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='xyztilefile', # パッケージ名(pip listで表示される)
version="0.3.3", # バージョン
description="manage files in xyz tile format", # 説明
author='Akito Davis Kawamura', # 作者名
license='MIT', # ライセンス
package_dir={'': 'src'},
packages=find_packages(where='src'),
install_requires=['numpy', 'scikit-image','geojson'],
long_description=long_description,
long_description_content_type='text/markdown',
keywords='xyztilefile xyz-tile xyztile',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
],
)