-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 835 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 835 Bytes
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
from setuptools import setup, find_packages
with open('README.rst',encoding='utf-8') as f:
long_description = f.read()
print(find_packages())
setup(
name='mk-blender-scr',
packages=find_packages(),
install_requires=[
"ase",
"ipywidgets<8.0",
"Jinja2",
"click",
"nglview",
"pandas",
"ipython",
"numpy"
],
version='1.0.9',
author='Kato Taisetsu',
url='https://shimi-lab.github.io/mk-blender-scr_Document/',
description='Create a Python script for Blender from Atoms of ASE.',
long_description=long_description,
long_description_content_type='text/x-rst', # 'text/plain', 'text/x-rst', 'text/markdown'
keywords='blender ase',
entry_points={"console_scripts": ["mk-blender-scr = mk_blender_scr.command.cli:main"]},
)