-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (25 loc) · 1.7 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
from setuptools import setup
from codecs import open
from os import path
current = path.abspath(path.dirname(__file__))
# long_description(後述)に、GitHub用のREADME.mdを指定
with open(path.join(current, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='contextplt', # パッケージ名(プロジェクト名)
packages=['contextplt'], # パッケージ内(プロジェクト内)のパッケージ名をリスト形式で指定
# version='0.1.1', # バージョン -> setup.cfg
license='MIT', # ライセンス
install_requires=['matplotlib'], # pip installする際に同時にインストールされるパッケージ名をリスト形式で指定
author='toshiakiasakura', # パッケージ作者の名前
author_email='wordpress.akitoshi@gmail.com', # パッケージ作者の連絡先メールアドレス
url='https://toshiakiasakura.github.io/contextplt/', # パッケージに関連するサイトのURL(GitHubなど)
description='Context manager style of matplotlib.', # パッケージの簡単な説明
long_description=long_description, # PyPIに'Project description'として表示されるパッケージの説明文
long_description_content_type='text/markdown', # long_descriptionの形式を'text/plain', 'text/x-rst', 'text/markdown'のいずれかから指定
keywords='context matplotlib plt', # PyPIでの検索用キーワードをスペース区切りで指定
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
], # パッケージ(プロジェクト)の分類。https://pypi.org/classifiers/に掲載されているものを指定可能。
)